title: Posts listed by Tag layout: default # this file would be used with catag-old.html in _includes and expects to be in the blogPath directory


{% assign sortedTags = site.tags | sort %} {% for tag in sortedTags %}

{% assign t = tag[0] %}
<section id="{{ t }}">
  <h2>{{ t }}</h2>
  <ul>
    {% for post in tag[1] %}
      <li><a href="{{ post.url }}">{{ post.title }}</a></li>
    {% endfor %}
  </ul>
</section>

{% endfor %}