diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-11 06:53:45 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-11 06:53:45 +0300 |
commit | 76ea2daaf6f6c4ba29edce704683b5e6ed225d2b (patch) | |
tree | 712f0e15534af40b97fc411def763f9f06be16d8 /_includes/header.html | |
parent | 0c6e85f224b833c1184f1b4a7e645a80960e0542 (diff) | |
download | popov.link-76ea2daaf6f6c4ba29edce704683b5e6ed225d2b.tar.xz popov.link-76ea2daaf6f6c4ba29edce704683b5e6ed225d2b.zip |
Reverse sorting
Diffstat (limited to '_includes/header.html')
-rw-r--r-- | _includes/header.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/header.html b/_includes/header.html index 01c9e92..655a8b4 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -2,7 +2,7 @@ <a href="{{ site.baseurl | uri_escape }}" class="navigation-title">Home</a> <ul class="navigation-list float-right"> <li class="navigation-item"> - {% for item in site.pages %} + {% for item in site.pages reversed %} {% if item.show == true %} <a href="{{ item.url | relative_url | uri_escape }}" class="navigation-link"> {{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }} |