diff --git a/fedireads/templates/author.html b/fedireads/templates/author.html index c89a94c5b..a240ada7c 100644 --- a/fedireads/templates/author.html +++ b/fedireads/templates/author.html @@ -1,19 +1,23 @@ {% extends 'layout.html' %} {% load fr_display %} {% block content %} -
-
-

{{ author.name }}

- {% if author.bio %} -
{{ author.bio | author_bio }} -
- {% endif %} - {% for book in books %} -
- {% include 'snippets/book.html' with book=book size=large description=True %} -
- {% endfor %} +
+

{{ author.name }}

+ + {% if author.bio %} +

+ {{ author.bio | author_bio }} +

+ {% endif %} +
+ +
+

Books by {{ author.name }}

+ {% for book in books %} +
+ {% include 'snippets/book.html' with book=book size=large description=True %}
+ {% endfor %}
{% endblock %}