19 lines
546 B
HTML
19 lines
546 B
HTML
|
{% extends "header_slim.html" %}
|
||
|
{% from "macros/rezept.html" import render_rezept_post %}
|
||
|
{%- block title -%}{{ this.title }}{%- endblock -%}
|
||
|
{%- block meta_description -%}
|
||
|
{%- if this.meta_description is defined and this.meta_description != "" -%}
|
||
|
{{ this.meta_description }}
|
||
|
{%- else -%}
|
||
|
C3WOC
|
||
|
{%- endif -%}
|
||
|
{%- endblock -%}
|
||
|
{% block body %}
|
||
|
<div class="content__box -heading">
|
||
|
<div class="content__inner_box">
|
||
|
<h1>{{ this.title }}</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ render_rezept_post(this) }}
|
||
|
{% endblock %}
|