cheatsheets/_layouts/home.html

24 lines
564 B
HTML

---
html_class: home
---
{% include head.html %}
{% include site-header.html %}
{% for category in site.category_names %}
<div class='pages-header'>
<h2>{{ category }}</h2>
</div>
<div class='pages-list'>
{% for page in site.pages %}
{% if page.category == category %}
<a href="{{base}}{{ page.url }}">
<span class='title'>{{ page.title }}</span>
<span class='date'>{{ page.url | remove: '.html' | remove: '/' }}</span>
</a>
{% endif %}
{% endfor %}
</div>
{% endfor %}
{% include foot.html %}