index.html 557 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: default
  3. title: Items
  4. ---
  5. <section class="items">
  6. {% include page-title.html %}
  7. <hr>
  8. {% for item in site.items %}
  9. {% comment %} Ommit this file from list, cleanly {% endcomment %}
  10. {% if item.title != 'Items' %}
  11. <article class="item-info">
  12. <h2>
  13. <a href="{{ item.url | prepend: site.baseurl }} ">
  14. {{ item.title }}
  15. </a>
  16. </h2>
  17. <p>
  18. {{ item.description }}
  19. </p>
  20. </article>
  21. <hr class="item-divider">
  22. {% endif %}
  23. {% endfor %}
  24. </section>