index.html 811 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. layout: default
  3. title: Bits
  4. pagination:
  5. enabled: true
  6. category: 'bits'
  7. ---
  8. <section class="bits">
  9. {% include page-title.html %}
  10. <hr>
  11. <section>
  12. <p>
  13. Today-I-learned liked micro-posts. <small>(may move to Posts)</small>
  14. </p>
  15. <p>
  16. On this page:
  17. </p>
  18. <nav>
  19. {% for bit in paginator.posts %}
  20. <ul>
  21. <li>
  22. <a rel="noopener" href="#{{ bit.url }}">
  23. {{ bit.title }}
  24. </a>
  25. </li>
  26. </ul>
  27. {% endfor %}
  28. </nav>
  29. {% include pagination.html %}
  30. </section>
  31. <hr>
  32. {% for bit in paginator.posts %}
  33. <article class="bit">
  34. <h2 id="{{ bit.url }}">
  35. {{ bit.title }}
  36. </h2>
  37. {{ bit.content }}
  38. </article>
  39. <hr class="bit-divider">
  40. {% endfor %}
  41. {% include pagination.html %}
  42. </section>