receptty.org/templates/tagy/single.html

14 lines
257 B
HTML
Raw Normal View History

2019-10-30 11:58:46 +01:00
{% extends "index.html" %}
{% block content %}
<main>
<h2>{{ term.name | capitalize() }}</h2>
<hr>
<section class="list">
{% for page in term.pages %}
2021-02-02 22:01:42 +01:00
{{ macro::print_recipe(recipe=page) }}
2019-10-30 11:58:46 +01:00
{% endfor %}
</section>
</main>
{% endblock content %}