webseite/templates/podcast.html

55 lines
2.0 KiB
HTML
Raw Normal View History

2021-03-31 02:08:49 +02:00
{% extends "header_slim.html" %}
{% from "macros/podcast.html" import render_podcast_episode %}
2021-03-31 02:08:49 +02:00
{% from "macros/pagination.html" import render_pagination %}
{%- block title -%}{{ this.title }}{%- endblock -%}
{%- block meta_description -%}
2021-04-06 18:24:25 +02:00
{%- if this.meta_description is defined and this.meta_description != "" -%}
{{ this.meta_description }}
{%- else -%}
Werkkooperative der Technikfreundinnen eG
{%- endif -%}
2021-03-31 02:08:49 +02:00
{%- endblock -%}
{% block body %}
2021-04-06 18:24:25 +02:00
{#
Main body part for the podcast
#}
<div class="content__box">
<div class="content__inner_box">
<h1>{{ this.title }}</h1>
<p>{{ this.description }}</p>
2021-04-06 18:24:25 +02:00
</div>
2021-03-31 02:08:49 +02:00
</div>
2021-04-06 18:24:25 +02:00
<section class="content -odd -columns">
<div class="content__box">
<div class="content__inner_box">
{{ this.body }}
{% if this.enable or this.enable2 -%}
{% if this.enable -%}
<a href="{{ this.link|url }}">
{{ this.spruch }} <img class="content__rss_logo" src="{{ '/images/rss_logo.svg'|asseturl }}" alt="RSS Logo"></a>
2021-04-06 18:24:25 +02:00
{%- endif %}
{% if this.enable2 -%}
, &nbsp;
<a href="{{ this.link2|url }}">
{{ this.spruch2 }} <img class="content__rss_logo" src="{{ '/images/rss_logo.svg'|asseturl }}" alt="RSS Logo">
</a>
2021-04-06 18:24:25 +02:00
{%- endif %}
{% endif -%}
</div>
</div>
</section>
{#- Die Podcast Folgen werden aus dem blog template importiert :P -#}
2021-03-31 02:08:49 +02:00
{% for episode in this.pagination.items %}
{{ render_podcast_episode(episode, from_index=true) }}
2021-04-06 18:24:25 +02:00
{% endfor %}
<section>
{{ render_pagination(this.pagination, true) }}
</section>
2021-03-31 02:08:49 +02:00
{% endblock %}