bookwyrm-mastodon/bookwyrm/templates/tag.html

15 lines
339 B
HTML
Raw Normal View History

2020-02-21 12:10:27 -05:00
{% extends 'layout.html' %}
2021-02-27 21:48:10 -05:00
{% load i18n %}
2020-12-12 21:25:04 -05:00
{% load bookwyrm_tags %}
{% block title %}{{ tag.name }}{% endblock %}
{% block content %}
<div class="block">
<h1 class="title">{% blocktrans %}Books tagged "{{ tag.name }}"{% endblocktrans %}</h1>
{% include 'snippets/book_tiles.html' with books=books.all %}
2020-02-21 12:10:27 -05:00
</div>
{% endblock %}