Author page

This commit is contained in:
Mouse Reeve
2020-09-30 16:20:50 -07:00
parent 7582540fe9
commit 6e1c116329
2 changed files with 18 additions and 31 deletions

View File

@ -1,8 +1,8 @@
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="content-container">
<h2>{{ author.display_name }}</h2>
<div class="block">
<h2 class="title">{{ author.display_name }}</h2>
{% if author.bio %}
<p>
@ -11,18 +11,9 @@
{% endif %}
</div>
<div class="content-container">
<h2>Books by {{ author.display_name }}</h2>
<div class="book-grid row shrink wrap">
{% for book in books %}
<div class="book-preview">
<a href="/book/{{ book.id }}">
{% include 'snippets/book_cover.html' with book=book %}
</a>
{% include 'snippets/shelve_button.html' with book=book %}
</div>
{% endfor %}
</div>
<div class="block">
<h3 class="title is-4">Books by {{ author.display_name }}</h3>
{% include 'snippets/book_tiles.html' with books=books %}
</div>
{% endblock %}