Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 813 Bytes

category.md

File metadata and controls

31 lines (28 loc) · 813 Bytes
layout title
default
Categories

Categories in use

{% for tag in site.categories %} {{ tag[0] }} {% endfor %}

{% for tag in site.categories %}

{{ tag[0] }}

    {% for post in tag[1] %}
                <li>
                    <a href="{{ site.baseurl }}{{ post.url }}">
                    {{ post.title }}
                    <small class="post-date">{{ post.date | date_to_string }}</small>
                    </a>
                </li>
    
            {% endfor %}
        </ul>
        {% endfor %}
    </div>