2020-02-11 01:32:03 -05:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% load fr_display %}
|
|
|
|
{% block content %}
|
2020-09-30 19:20:50 -04:00
|
|
|
<div class="block">
|
2020-12-12 12:47:27 -05:00
|
|
|
<h1 class="title">{{ author.name }}</h1>
|
2020-03-16 20:33:53 -04:00
|
|
|
|
|
|
|
{% if author.bio %}
|
|
|
|
<p>
|
2020-09-30 14:47:52 -04:00
|
|
|
{{ author.bio }}
|
2020-03-16 20:33:53 -04:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2020-09-30 19:20:50 -04:00
|
|
|
<div class="block">
|
2020-12-12 12:47:27 -05:00
|
|
|
<h3 class="title is-4">Books by {{ author.name }}</h3>
|
2020-09-30 19:20:50 -04:00
|
|
|
{% include 'snippets/book_tiles.html' with books=books %}
|
2020-02-11 01:32:03 -05:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|