2022-04-11 22:41:59 +02:00
|
|
|
{% 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 %}
|