{% 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 %} {% set blog_posts = site.get('/blog').children.order_by('-pub_date').limit(3) %} {% for post in blog_posts %} {{ post.title }} geschreiben 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 %} {{ episode.title }} geschreiben von {{ episode.author }} am {{ episode.pub_date }} {{ episode.podcast_teaser }} {% endfor %} {% endblock %}
geschreiben von {{ post.author }} am {{ post.pub_date }}
{{ post.meta_description }}
geschreiben von {{ episode.author }} am {{ episode.pub_date }}
{{ episode.podcast_teaser }}