mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
898 B
36 lines
898 B
{% include html-head.html %} |
|
|
|
<nav id="docs-nav"> |
|
<h1><a href="../index.html">{{ site.name }}</a> Docs</h1> |
|
|
|
<ul> |
|
{% for doc in site.categories.docs reversed %} |
|
{% if page.title == doc.title %} |
|
<li class="current"><a href="#content">{{ doc.title }}</a> |
|
<ul class="toc"> |
|
{% for item in page.toc %} |
|
<li><a href="#{{ item.anchor }}">{{ item.title }}</a></li> |
|
{% endfor %} |
|
</ul> |
|
</li> |
|
{% else %} |
|
{% if doc.layout != 'index-page' %} |
|
<li><a href="..{{ doc.url }}">{{ doc.title }}</a> |
|
{% endif %} |
|
{% endif %} |
|
{% endfor %} |
|
</ul> |
|
|
|
</nav> <!-- #docs-nav --> |
|
|
|
<section id="content"> |
|
|
|
<h1>{{ page.title }}</h1> |
|
|
|
{{ content }} |
|
|
|
{% include footer.html %} |
|
|
|
</section> <!-- #content --> |
|
|
|
{% include html-foot.html %} |