Limit recent pages to 18
This commit is contained in:
parent
27f47329d8
commit
59c9a51fbc
|
@ -37,7 +37,7 @@ type: website
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
{% for page in recent_pages reversed %}
|
{% for page in recent_pages reversed %}
|
||||||
{% if forloop.index < 20 %}
|
{% if forloop.index <= 18 %}
|
||||||
{% include 2017/pages-list-item.html page=page class='article item' %}
|
{% include 2017/pages-list-item.html page=page class='article item' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue