tags.html 593 B

123456789101112131415161718192021222324252627
  1. ---
  2. layout: default
  3. title: Tags
  4. ---
  5. <div class="tags">
  6. <h2>Tags</h2>
  7. <ul class="list-inline">
  8. {% for tag in site.tags | sort %}
  9. <li><a href="/tags.html#{{ tag[0] }}-ref">#{{ tag[0] }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. <hr/>
  13. {% for tag in site.tags %}
  14. <h3 id="{{ tag[0] }}-ref">#{{ tag[0] }} <small>({{ tag[1].size }})</small></h3>
  15. <div class="posts tag-posts">
  16. <ul class="list-unstyled">
  17. {% for post in tag[1] %}
  18. <li><code>{{ post.date | date:'%Y-%m-%d' }}</code>&mdash; <a href="{{ post.url }}">{{ post.title }}</a></li>
  19. {% endfor %}
  20. </ul>
  21. </div>
  22. {% endfor %}
  23. </div>