Fix post ordering

`reverse` is no longer needed with `weight`
This commit is contained in:
Philipp Oppermann
2019-01-22 16:57:22 +01:00
parent ccc36b7d45
commit 53e0749906
5 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
{% block introduction %}{% endblock introduction %}
<div class="posts neutral">
{% for page in section.pages|reverse %}
{% for page in section.pages %}
{{ macros::post_link(page=page) }}
{% endfor %}
</div>