layout: default


<div class=“tags-header”>

<h1>Tags</h1>

</div>

{% for tag in site.tags %}

<h2>{{ tag[0] }}</h2>
<ul>
    {% for posts in tag %}
        {% for post in posts %}
            {% if post.title != nil %}
                <li><a href="{{ post.url }}">{{ post.title }}</a></li>
            {% endif %}
        {% endfor %}
    {% endfor %}
</ul>

{% endfor %}