index.html 744 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. layout: default
  3. title: Posts
  4. ---
  5. <section class="tags">
  6. {% include page-title.html %}
  7. <hr>
  8. <article>
  9. <p>
  10. There are currently {{ site.posts | size }} posts
  11. in the archive.
  12. Explore the topics below to find related posts.
  13. </p>
  14. <ul>
  15. {% for tag in site.tags %}
  16. <li class="tag">
  17. <a href="{{ tag.first | prepend: site.baseurl }} ">
  18. {{ tag.first | capitalize | replace: "-", " " }}
  19. <small>{% assign _posts = tag.last | size %}
  20. {{ _posts }}
  21. {% if _posts == 1 %}
  22. post
  23. {% else %}
  24. posts
  25. {% endif %}
  26. </small>
  27. </a>
  28. </li>
  29. {% endfor %}
  30. </ul>
  31. </article>
  32. </section>