mirror of https://github.com/metafizzy/isotope
David DeSandro
14 years ago
5 changed files with 41 additions and 2 deletions
@ -0,0 +1,17 @@
|
||||
{% include html-head.html %} |
||||
|
||||
<p id="demo-nav"><a href="../index.html">{{ site.name }}</a></p> |
||||
|
||||
<h1>{{ page.title }}</h1> |
||||
|
||||
<ul id="index-list"> |
||||
{% for post in site.categories[page.category] reversed %} |
||||
{% if post.layout != 'index-page' %} |
||||
<li><a href="{{ post.url }}">{{ post.title }}</a></li> |
||||
{% endif %} |
||||
{% endfor %} |
||||
</ul> |
||||
|
||||
{% include footer.html %} |
||||
|
||||
{% include html-foot.html %} |
@ -0,0 +1,7 @@
|
||||
--- |
||||
title: Demos |
||||
layout: index-page |
||||
category: demos |
||||
body_class: doc |
||||
--- |
||||
|
@ -0,0 +1,5 @@
|
||||
--- |
||||
title: Docs |
||||
layout: index-page |
||||
category: docs |
||||
--- |
@ -0,0 +1,6 @@
|
||||
--- |
||||
title: Tests |
||||
layout: index-page |
||||
category: tests |
||||
body_class: doc |
||||
--- |
Loading…
Reference in new issue