1
0
Fork 0

Version 0.9

This commit is contained in:
Moritz »mo.« Sauer 2014-09-21 18:39:46 +02:00
parent af69d3daac
commit b268f85c0b
50 changed files with 421 additions and 207 deletions

40
_includes/list-posts.html Normal file
View file

@ -0,0 +1,40 @@
{% comment %}
Possible parameter for this loop:
entries
offset
category
Example: {% include list-posts.html entries='3' offset='1' category='design' %}
This loop works like this:
1. First we check if there was given a category for filtering if include.categories == NULL
2. If no category is given for filtering do a general loop.
3. If a category was given, assign category the given category to the variable category assign category = include.categories
{% endcomment %}
<ul class="side-nav">
{% if include.categories == NULL %}
{% for post in site.posts limit:include.entries offset:include.offset %}
<li><a href="{{ site.url }}{{ post.url }}">{% if post.subheadline %}{{ post.subheadline }} &middot; {% endif %}<strong>{{ post.title }}</strong></a></li>
{% endfor %}
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>More </strong></a></li>
{% elsif include.categories != empty %}
{% assign category = include.categories %}
{% for post in site.categories.[category] limit:include.entries offset:include.offset %}
<li><a href="{{ site.url }}{{ post.url }}">{% if post.subheadline %}{{ post.subheadline }} &middot; {% endif %}<strong>{{ post.title }}</strong></a></li>
{% endfor %}
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>More </strong></a></li>
{% endif %}
</ul>