14 lines
No EOL
391 B
HTML
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> |