diff options
author | Justin Mayer <entroP@gmail.com> | 2018-10-18 12:36:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 12:36:13 +0200 |
commit | d8ee93d498c591815b411ffec65de21a9aa0a936 (patch) | |
tree | 0b3429fd28083041ffd31605d0e0f44d4da38042 /uikit/templates/articles.html | |
parent | 44d51834110c517aa484a32f271c9801985b3d5e (diff) | |
parent | 22bb2cfe6986c79449e64b32821e9c3e036200dc (diff) | |
download | pelican-themes-d8ee93d498c591815b411ffec65de21a9aa0a936.tar.gz |
Merge pull request #612 from mcepl/no_sort_on_articles
Remove two more articles|sort constructs
Diffstat (limited to 'uikit/templates/articles.html')
-rw-r--r-- | uikit/templates/articles.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uikit/templates/articles.html b/uikit/templates/articles.html index 8454395..17f9e3c 100644 --- a/uikit/templates/articles.html +++ b/uikit/templates/articles.html @@ -12,7 +12,7 @@ <h1>{{'all the articles'|capitalize}}</h1> <ul> -{% for article in articles|sort %} +{% for article in articles %} <li><a class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}" href="/{{ article.url }}">{{ article.title }}</a></li> {% endfor %} </ul> |