39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
{%- macro render_rezept_post(post, from_index=false, section_class='-odd') -%}
|
|
{{- '\n ' -}} <section class="content {{ section_class }}">
|
|
{{- '\n ' -}} <div class="content__box -heading">
|
|
{{- '\n ' -}} <div class="content__inner_box">
|
|
{%- if from_index -%}
|
|
{{- '\n ' -}} <h2><a class="content__blog_link {{ section_class }}" href="{{ post|url }}">{{ post.title }}</a></h2>
|
|
{%- else -%}
|
|
{{- '\n ' -}} <h2>{{ post.title }}</h2>
|
|
{% endif %}
|
|
{{- '\n ' -}} <hr class="{{ section_class }}">
|
|
{{- '\n ' -}} <p class="content__meta">
|
|
{{- '\n ' -}} <i>Ein Waffelrezept von {{ post.author }}</i>
|
|
{{- '\n ' -}} </p>
|
|
{{- '\n ' -}} </div>
|
|
{{- '\n ' -}} </div>
|
|
{%- if post.orf | default(false) -%}
|
|
{#-
|
|
Render recepie based on open recipe format
|
|
defined in zutaten.yml
|
|
-#}
|
|
{%- for child in post.children -%}
|
|
{%- if child._template == 'zutaten.yaml' -%}
|
|
{%- if from_index -%}
|
|
{{ '\n ' -}} <p>{{ child.recipe_name }}</p>
|
|
{%- else -%}
|
|
|
|
{%- include "zutaten/rezept.html" -%}
|
|
|
|
{%- endif -%}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- endif %}
|
|
{{- '\n ' -}} <div class="content__box">
|
|
{{- '\n ' -}} <div class="content__inner_box">
|
|
{{- '\n ' -}} {{- post.body -}}
|
|
{{- '\n ' -}} </div>
|
|
{{- '\n ' -}} </div>
|
|
{{- '\n ' -}} </section>
|
|
{%- endmacro -%}
|