diff options
author | Alan Pearce | 2023-04-18 07:25:53 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-18 07:25:53 +0200 |
commit | 3560f40a578151680b5ffb7c0237c8c88424ca37 (patch) | |
tree | f113d153df20cae6bf7e26cbe169be3ae3e2e227 /templates | |
parent | 3b726a97eb8bc4104a6659357e0889cb063d370b (diff) | |
download | website-3560f40a578151680b5ffb7c0237c8c88424ca37.tar.lz website-3560f40a578151680b5ffb7c0237c8c88424ca37.tar.zst website-3560f40a578151680b5ffb7c0237c8c88424ca37.zip |
Don't reverse the order of pages
Diffstat (limited to 'templates')
-rw-r--r-- | templates/section.html | 2 | ||||
-rw-r--r-- | templates/taxonomy_single.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/section.html b/templates/section.html index 6801267..ae365a8 100644 --- a/templates/section.html +++ b/templates/section.html @@ -9,7 +9,7 @@ </small> {%- endif %} <ul class="blog-posts"> - {% for page in section.pages | reverse %} + {% for page in section.pages %} <li> <span> <i> diff --git a/templates/taxonomy_single.html b/templates/taxonomy_single.html index 685eaf5..6afb6b2 100644 --- a/templates/taxonomy_single.html +++ b/templates/taxonomy_single.html @@ -9,7 +9,7 @@ </small> {%- endif %} <ul class="blog-posts"> - {% for page in term.pages | reverse %} + {% for page in term.pages %} <li> <span> <i> |