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.
|
{% 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 %}
|