💾 Archived View for tommi.space › Books.gmi captured on 2023-07-22 at 16:45:45. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

<style>
    li {
    	margin-bottom: 0;
    }
</style>

Library

<div class='library'>
    {% for book in library -%}
    	{% unless book.location == 'given away' or book.location == 'sold' or book.location contains 'gift' -%}
    		{% if book.isbn -%}
    			<a href='<https://openlibrary.org/isbn/{{> book.isbn }}' title='{{ book.title }} in the Open Library'>
    				<img src='<https://covers.openlibrary.org/b/isbn/{{> book.isbn }}-M.jpg?default=false' alt='{{ book.title }}' title='{{ book.title }}'>
    		{% else -%}
    			<a href='javascript:void(0)' title='{{ book.title }}'>
    			<div><strong>{{ book.author }}</strong> - <cite>{{ book.title }}</cite></div>
    		{% endif -%}
    			</a>
    	{% endunless -%}
    {% endfor -%}
</div>

<br>
<br>

Notes

All of my public notes on what I read

<ul class='two'>
    {% for note in collections.jam -%}
    	{% for tag in note.data.tags -%}
    		{% capture booktag -%}{{ tag | replace: '/', ' ' }}{% endcapture -%}
    		{% if booktag contains 'book' -%}
    			<li lang='{{ note.data.lang }}'><cite><a href='{{ note.url }}' hreflang='{{ note.data.lang }}' title='{{ note.data.title }}'>{{ note.data.title }}</a></cite></li>
    		{% endif -%}
    	{% endfor -%}
    {% endfor -%}
</ul>

<br>
<br>

Wishlist

<div class='yellow box'>
    <h4>Note</h4>
    If you got here from the <a href='https://tommi.space/wishlist' title='My Wishlist'>Wishlist</a>, please consider that most of the books below are merely readings I'm interested in and not <strong>books I actually need</strong>. Write me if you intend to gift me with a book (thanks for the idea ❤️)
</div>

<ul class='two'>
    {% for book in books-wishlist -%}
    	<li>{% if book.author -%}{{ book.author }} – {% endif -%}<cite>{{ book.title }}</cite></li>
    {% endfor -%}
</ul>