1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-07-01 17:43:16 +00:00
calibre-web/cps/templates/authors.html

12 lines
279 B
HTML

{% extends "layout.html" %}
{% block body %}
<div class="discover">
<h1>{{title}}</h1>
<ul class="list-unstyled">
{% for entry in entries %}
<li><a href="{{url_for('author', name=entry.name)}}">{{entry.sort}}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}