forked from mirrors/bookwyrm
19 lines
406 B
HTML
19 lines
406 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
<div class="block">
|
|
<h1 class="title">{{ author.display_name }}</h1>
|
|
|
|
{% 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 %}
|
|
|