1
0
Fork 0

Remove everything

This commit is contained in:
Luca Beltrame 2015-04-26 15:25:12 +02:00
parent 4b0ce2b03f
commit 28a99a0e04
268 changed files with 0 additions and 22354 deletions

View file

@ -1,20 +0,0 @@
{% 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>