1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% extends "blocks/base.html" %}
{% block variables -%}
{% set base_url = "." %}
{%- endblock variables %}
{% block title %}{{ lang.index.page_title }}{% endblock title %}
{% block main %}
{%- set lang = lang.index -%}
{{ lf -}}
{{ lf -}}
{{ lang.page_title }}{{ lf -}}
{{ lang.page_subtitle }}{{ lf -}}
{{ lf }}
{%- if tags | length > 0 -%}
{{ lf -}}
{{ lang.tags_caption }}:{{ lf -}}
{{ lf }}
{%- for tag in tags -%}
{{ tag }}{{ lf }}
{%- endfor -%}
{% include "includes/reset.html" %}{{ lf -}}
{{ lf -}}
{{ lf }}
{%- endif -%}
{{ lf -}}
{{ lf -}}
{{ recipes | length }}{{ lf -}}
{{-
recipes | length | pluralize(
singular = lang.recipe_found,
plural = lang.recipes_found
)
-}}
(random):{{ lf -}}
{{ lf -}}
{{ lf }}
{%- for recipe in recipes -%}
{{ lf -}}
{{ recipe.title }}{{ lf }}
{%- if recipe.tags | length > 0 -%}
{{ lf -}}
{{ lang.tags_caption }}:{{ lf -}}
{{ lf }}
{%- for tag in recipe.tags -%}
{{ tag }}{{ lf }}
{%- endfor -%}
{{ lf -}}
{{ lf }}
{%- endif -%}
{{ lf }}
{%- endfor -%}
{{ lf -}}
{{ lf -}}
{% endblock main %}