{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="block">
    <h2 class="title">{{ author.display_name }}</h2>

    {% if author.bio %}
    <p>
        {{ author.bio }}
    </p>
    {% endif %}
</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 %}