Files
asimonson1125.github.io/src/templates/partials/bookshelf.html
2024-02-12 19:22:09 -06:00

24 lines
634 B
HTML

{% macro bookshelf(books) %}
<a href="/books">
<div class="bookshelf">
<div class="flex">
<h4 class="bookshelfHeader">Check out the things I read:</h4>
<p class='nomargin'>See More >></p>
</div>
<div class="bookContainer">
{% for i in books.selection %} {% set book = books.books[i] %}
<a href="/books#'{{i}}'">
<div class="book">
<img
alt="{{ i }} cover"
src="{{ url_for('static', filename=('photos/books/' + book.filename))}}"
/>
<h4>{{ i }}</h4>
</div>
</a>
{% endfor %}
</div>
</div>
</a>
{% endmacro %}