mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 13:26:57 +00:00
757 B
757 B
layout | permalink | title |
---|---|---|
page | /categories/ | Categories |
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}
{% endfor %}
<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
{% if post.hidden != true %}
<article class="archive-item">
<h4><a href="{{ site.baseurl }}{{ post.url }}">{% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%}</a></h4>
</article>
{% endif %}
{% endfor %}