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.
16 lines
313 B
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 %}
|