1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-07-02 10:03:27 +00:00
calibre-web/cps/templates/categories.html

12 lines
281 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('category', name=entry.name)}}">{{entry.name}}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}