2020-02-21 17:10:27 +00:00
|
|
|
{% extends 'layout.html' %}
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-02-21 17:10:27 +00:00
|
|
|
{% block content %}
|
2020-09-30 03:44:33 +00:00
|
|
|
|
|
|
|
<div class="block">
|
2020-11-09 20:06:44 +00:00
|
|
|
<h1 class="title">Books tagged "{{ tag.name }}"</h1>
|
2020-09-30 03:44:33 +00:00
|
|
|
{% include 'snippets/book_tiles.html' with books=books.all %}
|
2020-02-21 17:10:27 +00:00
|
|
|
</div>
|
2020-09-30 03:44:33 +00:00
|
|
|
|
2020-02-21 17:10:27 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|