receptty.org/templates/tagy/single.html
2021-02-03 22:27:09 +01:00

14 lines
257 B
HTML

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