1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/_includes/for-loop-definition-list.html
Moritz »mo.« Sauer e5d20c0faf Init Jekyll Theme
2014-08-20 20:33:40 +02:00

14 lines
No EOL
391 B
HTML

<dl>
{% for post in site.posts reversed %}
{% if post.categories contains include.list-category %}
<dt>
<a href="{{ site.url }}{{ post.url }}">{% if post.chapter != nil %}{{ post.chapter }}. {% endif %}{{ post.title }}</a>
</dt>
{% if post.description %}
<dd>
{{ post.description }}
</dd>
{% endif %}
{% endif %}
{% endfor %}
</dl>