moviewyrm/bookwyrm/templates/author.html

20 lines
393 B
HTML
Raw Normal View History

2020-02-11 06:32:03 +00:00
{% extends 'layout.html' %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2020-02-11 06:32:03 +00:00
{% block content %}
2020-09-30 23:20:50 +00:00
<div class="block">
<h1 class="title">{{ author.name }}</h1>
{% if author.bio %}
<p>
2020-09-30 18:47:52 +00:00
{{ author.bio }}
</p>
{% endif %}
</div>
2020-09-30 23:20:50 +00:00
<div class="block">
<h3 class="title is-4">Books by {{ author.name }}</h3>
2020-09-30 23:20:50 +00:00
{% include 'snippets/book_tiles.html' with books=books %}
2020-02-11 06:32:03 +00:00
</div>
{% endblock %}