webseite/templates/macros/rezept.html

25 lines
757 B
HTML
Raw Normal View History

2021-06-24 23:44:12 +02:00
{%- macro render_rezept_post(post, from_index=false, section_class='-odd') -%}
{{- '\n ' -}} <section class="content {{ section_class }}">
2021-07-31 18:48:28 +02:00
{%- if post.orf | default(false) -%}
{#-
Render recepie based on open recipe format
defined in zutaten.yml
-#}
2021-06-24 23:44:12 +02:00
{%- for child in post.children -%}
{%- if child._template == 'zutaten.yaml' -%}
2021-07-31 18:48:28 +02:00
{%- if from_index -%}
{{ '\n ' -}} <p>{{ child.recipe_name }}</p>
2021-06-24 23:44:12 +02:00
{%- else -%}
2021-07-29 01:15:36 +02:00
2021-07-31 18:48:28 +02:00
{%- include "zutaten/rezept.html" -%}
2021-07-29 01:15:36 +02:00
2021-06-24 23:44:12 +02:00
{%- endif -%}
{%- endif -%}
{%- endfor -%}
2021-08-08 23:35:54 +02:00
{%- include "macros/rezept_body.html" -%}
{%- else -%}
{%- include "macros/rezept_body.html" -%}
2021-06-24 23:44:12 +02:00
{%- endif %}
{{- '\n ' -}} </section>
{%- endmacro -%}