Skip to content

Latest commit

 

History

History
47 lines (42 loc) · 1.32 KB

categories.md

File metadata and controls

47 lines (42 loc) · 1.32 KB
layout title
default
Categories

{% assign pages_list = site.pages %} {% for node in pages_list %} {% if node.title != null %} {% if node.layout == "category" %} {{ node.title }} | {% endif %} {% endif %} {% endfor %}

 

{% for node in pages_list %} {% if node.title != null %} {% if node.layout == "category" %}
    <ul class="posts-list">
    {% assign category = node.category | default: node.title %}
    
    {% for post in site.categories[category] %}
        <li>
        <p>
            <a href="{{ site.baseurl }}{{ post.url }}">
            {{ post.title }}
            </a>
            <span class="date"><small>{{ post.date | date: '%B %d, %Y' }}
                / <a href="https://amanokaze.github.io{{ post.url }}#disqus_thread">0 Comments</a>
            </small></span>
        </p>
        </li>
    {% endfor %}
    
    </ul>

{% endif %}
{% endif %}
<p>&nbsp;</p>

{% endfor %}