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