cheatsheets/_layouts/2017/home.html

39 lines
966 B
HTML

---
type: website
---
{% include 2017/head.html %}
{% include 2017/top-nav.html page=page %}
<div class='body-area -slim'>
<div class='search-box'>
<input type='text' placeholder='Search...' autofocus>
</div>
<div class='pages-list'>
<h2 class='category item' id='{{ category | downcase | replace: " ", "-" }}'>
<span>Top cheatsheets</span>
</h2>
{% for page in site.pages %}
{% if page.tags contains 'Featured' %}
{% include 2017/pages-list-item.html page=page %}
{% endif %}
{% endfor %}
{% for category in site.category_names %}
<h2 class='category item' id='{{ category | downcase | replace: " ", "-" }}'>
<span>{{ category }}</span>
</h2>
{% for page in site.pages %}
{% if page.category == category %}
{% include 2017/pages-list-item.html page=page %}
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
{% include 2017/foot.html %}