Release 0.92 2014-12-21
This commit is contained in:
parent
3068e7a7aa
commit
a56896dda4
114 changed files with 10775 additions and 2079 deletions
|
@ -25,7 +25,7 @@ This loop works like this:
|
|||
{% 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>More ›</strong></a></li>
|
||||
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>{{ site.data.language.more }}</strong></a></li>
|
||||
|
||||
|
||||
{% elsif include.categories != empty %}
|
||||
|
@ -34,7 +34,7 @@ This loop works like this:
|
|||
{% 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>More ›</strong></a></li>
|
||||
<li class="text-right"><a href="{{ site.url }}/blog/archive/"><strong>{{ site.data.language.more }}</strong></a></li>
|
||||
{% endif %}
|
||||
|
||||
</ul>
|
||||
|
|
Reference in a new issue