2021-08-08 23:35:54 +02:00
|
|
|
{%- extends "header_slim.html" -%}
|
|
|
|
{%- from "macros/rezept.html" import render_rezept_post -%}
|
2021-06-24 23:44:12 +02:00
|
|
|
{%- block title -%}{{ this.title }}{%- endblock -%}
|
|
|
|
{%- block meta_description -%}
|
|
|
|
{%- if this.meta_description is defined and this.meta_description != "" -%}
|
2021-08-08 23:35:54 +02:00
|
|
|
{{- this.meta_description -}}
|
2021-06-24 23:44:12 +02:00
|
|
|
{%- else -%}
|
|
|
|
C3WOC
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endblock -%}
|
2021-11-17 00:39:45 +01:00
|
|
|
{# https://schema.org/Recipe #}
|
|
|
|
{%- block json_ld -%}
|
|
|
|
<script type='application/ld+json'>
|
|
|
|
{
|
|
|
|
{%- for child in this.children -%}
|
|
|
|
{%- if child._template == 'zutaten.yaml' -%}
|
|
|
|
{%- if not from_index -%}
|
|
|
|
{%- include "zutaten/rezept_ld.json.j2" -%}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{%- endblock -%}
|
2021-08-08 23:35:54 +02:00
|
|
|
{%- block body -%}
|
2021-08-11 01:21:25 +02:00
|
|
|
{{- render_rezept_post(this) -}}
|
2021-08-08 23:35:54 +02:00
|
|
|
{%- endblock -%}
|