Added styles-injection-possibility via front matter new include loop for collections
This commit is contained in:
parent
37c68f331a
commit
cd0c3c66da
3 changed files with 27 additions and 1 deletions
20
_includes/list-collection.html
Normal file
20
_includes/list-collection.html
Normal 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> </li>
|
||||
</ul>
|
Reference in a new issue