diff options
Diffstat (limited to 'uikit/templates')
-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> |