This commit is contained in:
relikd
2019-11-06 01:08:23 +01:00
commit 57351a5e12
87 changed files with 1219 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends "layout.html" %}
{% from "macros/recipes.html" import render_recipe_list %}
{% from "macros/pagination.html" import render_pagination_all %}
{% block title %}{{ localize('title.recipes') }}{% endblock %}
{% block body %}
<h1>{{ localize('title.recipes') }}</h1>
{{ render_recipe_list(this.pagination.items) }}
{{ render_pagination_all(this.pagination) }}
{% endblock %}