Website/_posts/protokolle/index.html
2017-02-06 14:58:36 +01:00

17 lines
355 B
HTML

---
layout: default
title: Protokolle
---
{% raw %}
{% for post in site.posts %}
{% if post.categories contains 'protokoll' %}
<div class="post">
<h3 class="title"><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div class="entry">
{{ post.content | strip_html | truncatewords: 100 }}
</div>
</div>
{% endif %}
{% endfor %}
{% endraw %}