1
4
Fork 1
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
331 B
HTML

{% extends "base.html" %}
{% block content %}
<main>
<h2>{{ term.name | capitalize() }}</h2>
<div class="taglist centering">
{{ macro::tags_in_category() }}
</div>
<hr>
<section class="list">
{% for page in term.pages %}
{{ macro::print_recipe(recipe=page) }}
{% endfor %}
</section>
</main>
{% endblock content %}