dlibrary/dlibrary/templates/list.html

12 lines
486 B
HTML

{% extends 'base.html' %}
{% block body %}
{% from 'utils.html' import index, root, card with context %}
<h1 id="title"><a href="{{ root() }}/{{ index() }}">DLibrary</a>{% if categorization %} &gt; <a href="{{ root() }}/{{ categorization }}/{{ index() }}">{{ categorization.capitalize() }}</a>{% endif %}{% if title %} &gt; {{ title }}{% endif %}</h1>
{% include 'nav.html' %}
<div class="card-listing">
{% for work in works %}
{{ card(work) }}
{% endfor %}
</div>
{% endblock %}