Makefile, AppCache and numerous other changes

This commit is contained in:
relikd
2019-11-25 18:09:40 +01:00
parent 57351a5e12
commit 40d483bc38
98 changed files with 1310 additions and 306 deletions

View File

@@ -1,9 +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 title %}{{ localize(this.alt, 'title.recipes') }}{% endblock %}
{% block body %}
<h1>{{ localize('title.recipes') }}</h1>
<h1>{{ localize(this.alt, 'title.recipes') }}</h1>
{{ render_recipe_list(this.pagination.items) }}
{{ render_pagination_all(this.pagination) }}
{% endblock %}