moviewyrm/fedireads/templates/author.html

20 lines
481 B
HTML
Raw Normal View History

2020-02-11 06:32:03 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div id="content">
<div>
2020-03-07 06:56:44 +00:00
<h2>{{ author.name }}</h2>
{% if author.bio %}
<blockquote>{{ author.bio | author_bio }}
2020-02-11 06:40:20 +00:00
</blockquote>
{% endif %}
2020-02-11 06:32:03 +00:00
{% for book in books %}
<div class="book-preview">
{% include 'snippets/book.html' with book=book size=large description=True %}
</div>
{% endfor %}
</div>
</div>
{% endblock %}