mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-15 05:47:02 +00:00
24 lines
621 B
Markdown
24 lines
621 B
Markdown
|
---
|
||
|
layout: page
|
||
|
permalink: /categories/
|
||
|
title: Categories
|
||
|
---
|
||
|
|
||
|
|
||
|
<div id="archives">
|
||
|
{% for category in site.categories %}
|
||
|
<div class="archive-group">
|
||
|
{% capture category_name %}{{ category | first }}{% endcapture %}
|
||
|
<div id="#{{ category_name | slugize }}"></div>
|
||
|
<p></p>
|
||
|
|
||
|
<h3 class="category-head">{{ category_name }}</h3>
|
||
|
<a name="{{ category_name | slugize }}"></a>
|
||
|
{% for post in site.categories[category_name] %}
|
||
|
<article class="archive-item">
|
||
|
<h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
|
||
|
</article>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|