index.html 585 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: default
  3. title: Cheat Sheets
  4. ---
  5. <section class="cheat-sheets">
  6. {% include page-title.html %}
  7. <hr>
  8. <p>
  9. How-tos on tools, libraries, and practices.
  10. </p>
  11. {% for sheet in site.cheat-sheets %}
  12. {% comment %} Ommit index.html from list, cleanly {% endcomment %}
  13. {% if sheet.title != 'Cheat Sheets' %}
  14. <dl class="cheat-sheet-list">
  15. <dt>
  16. <a rel="noopener" href="{{ sheet.url | prepend: site.baseurl }}">
  17. {{ sheet.title }}
  18. </a>
  19. </dt>
  20. <dd>
  21. {{ sheet.description }}
  22. </dd>
  23. </dl>
  24. {% endif %}
  25. {% endfor %}
  26. </section>