tags.html 636 B

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