Sha256: a1834e928c5c6a82f815722f3d2b79f7e2206ef17fb3f808cd6a221df8435ada

Contents?: true

Size: 455 Bytes

Versions: 5

Compression:

Stored size: 455 Bytes

Contents

---
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 %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
structrdfal-0.1.5 assets/tag.html
structrdfal-0.1.4 assets/tag.html
structrdfal-0.1.3 assets/tag.html
structrdfal-0.1.2 assets/tag.html
structrdfal-0.1.1 assets/tag.html