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-title-only.html
Moritz »mo.« Sauer e5d20c0faf Init Jekyll Theme
2014-08-20 20:33:40 +02:00

8 lines
No EOL
316 B
HTML

<ul class="side-nav">
{% for post in site.posts reversed %}
{% if post.categories contains include.list-category %}
<li><a href="{{ site.url }}{{ post.url }}">{% if post.chapter != nil %}{{ post.chapter }}. {% endif %}{{ post.title }}</a></li>
{% endif %}
{% endfor %}
<li>&nbsp;</li>
</ul>