blob: f7b7a8c8fade085d0c6454dd7d5551ca1af5bc3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<p>This is a list of posts in category "{{ include.category }}".</p>
{% if site.categories[include.category].size > 0 %}
<ul>
{% for post in site.categories[include.category] %}
<li><a href="{{ post.url | relative_url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if include.archive_link %}
<p>For a complete list of posts grouped by category, please see <a href="{{ include.archive_link | relative_url }}">this page</a>.</p>
{% endif %}
|