We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f5f2de commit bea6b6bCopy full SHA for bea6b6b
_includes/git-wiki/components/lists/page-list.html
@@ -7,7 +7,7 @@
7
}} updated) {% endif %}:</span>
8
<ul class="page-list">
9
{% assign numPages=0 %}
10
- {% assign items = site.html_pages | sort: 'date' %}
+ {% assign items = site.html_pages | sort: 'date' | reverse %}
11
{% for page in items %}
12
{% if numPages >= site.show_wiki_pages_limit %}
13
{% break %}
_includes/git-wiki/components/lists/post-list.html
<ul class="post-list">
- {% assign items = site.posts | sort: 'date' %}
+ {% assign items = site.posts | sort: 'date' | reverse %}
{% for post in items %}
{% if numPages >= site.show_wiki_posts_limit %}
0 commit comments