bookwyrm/fedireads/templates/tag.html

17 lines
366 B
HTML
Raw Normal View History

2020-02-21 17:10:27 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div id="content">
<div>
<h2>Books tagged "{{ tag.name }}"</h2>
{% for book in books.all %}
2020-02-21 17:15:20 +00:00
<div class="book-preview grid">
2020-02-21 17:10:27 +00:00
{% include 'snippets/book.html' with book=book size=large %}
</div>
{% endfor %}
</div>
</div>
{% endblock %}