1
0
Fork 0

Import of the new theme

This commit is contained in:
Luca Beltrame 2015-05-07 07:32:01 +02:00
parent 04104f0bff
commit 0693a85c3f
331 changed files with 21077 additions and 8782 deletions

View file

@ -0,0 +1,20 @@
{% comment %}
*
* This include lets you loop through a collection to list
* all entries in that collection.
*
* If you set »published: false« in front matter of a collection page
* the page gots filtered out via unless
*
* Example: {% include list-collection.html collection='wordpress' %}
*
{% endcomment %}
<ul class="side-nav">
{% for page in site.[include.collection] %}
{% unless page.published == false %}
<li><a href="{{ site.url }}{{ page.url }}">{{ page.title }}</a></li>
{% endunless %}
{% endfor %}
<li>&nbsp;</li>
</ul>