2021-03-31 02:08:49 +02:00
|
|
|
{% extends "header_slim.html" %}
|
2022-08-24 22:19:50 +02:00
|
|
|
{% from "macros/podcast.html" import render_podcast_episode %}
|
2021-03-31 02:08:49 +02:00
|
|
|
{%- block title -%}{{ this.title }}{%- endblock -%}
|
|
|
|
{%- block meta_description -%}
|
|
|
|
{%- if this.meta_description is defined and this.meta_description != "" -%}
|
|
|
|
{{ this.meta_description }}
|
|
|
|
{%- else -%}
|
|
|
|
Werkkooperative der Technikfreundinnen eG
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endblock -%}
|
|
|
|
{% block body %}
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-24 22:19:50 +02:00
|
|
|
{{ render_podcast_episode(this) }}
|
2021-03-31 02:08:49 +02:00
|
|
|
{% endblock %}
|