moviewyrm/bookwyrm/templates/tag.html
2020-12-12 18:25:57 -08:00

13 lines
242 B
HTML

{% extends 'layout.html' %}
{% load bookwyrm_tags %}
{% block content %}
<div class="block">
<h1 class="title">Books tagged "{{ tag.name }}"</h1>
{% include 'snippets/book_tiles.html' with books=books.all %}
</div>
{% endblock %}