Zernit/docs/_includes/nav.html
2020-02-06 06:06:53 +00:00

19 lines
516 B
HTML

<h1>{{ site.title }}</h1>
<ul id='links'>
{% for post in site.posts %}
{% if post.category == null %}
<li><a href='#{{ post.url }}'>{{ post.title }}</a></li>
{% endif %}
{% endfor %}
{% for category in site.categories %}
<li><h2>{{ category | first }}</h2>
<ul>
{% for posts in category %}
{% for post in posts %}
<li class='{{ post.type }}'><a href='#{{ post.url }}'>{{ post.title }}</a></li>
{% endfor %}
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>