{% extends "header_slim.html" %} {%- 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 %}

{{ this.title }}

{{ this.body }}
{% set blog_posts = site.get('/blog').children.order_by('-pub_date').limit(3) %}
{% for post in blog_posts %}

RSS Logo {{ post.title }}


geschrieben von {{ post.author }} am {{ post.pub_date }}

{{ post.meta_description }}

{% endfor %} {% set episodes = site.get('/podcast').children.order_by('-pub_date').limit(3) %} {% for episode in episodes %}

Podcast Logo {{ episode.title }}


aufgenommen von {{ episode.authors }}, veröffentlicht am {{ episode.pub_date }}

{{ episode.podcast_teaser }}

{% endfor %}
{% endblock %}