forked from mirrors/bookwyrm
12 lines
242 B
HTML
12 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 %}
|
|
|
|
|