receptty.org/templates/index.html

16 lines
313 B
HTML

{% extends "base.html" %}
{% block content %}
<main>
<h2>Nejnovější recepty</h2>
<hr>
<section class="list">
{% for page in paginator.pages %}
{{ macro::print_recipe(recipe=page) }}
{% endfor %}
</section>
<div class="pagination">
{{ macro::pagination() }}
</div>
</main>
{% endblock content %}