40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% 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 }} · {% endif %}<strong>{{ post.title }}</strong></a></li>
|
||
{% endfor %}
|
||
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>{{ site.data.language.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 }} · {% endif %}<strong>{{ post.title }}</strong></a></li>
|
||
{% endfor %}
|
||
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>{{ site.data.language.more }}</strong></a></li>
|
||
{% endif %}
|
||
|
||
</ul>
|