diff options
-rw-r--r-- | uikit/templates/articles.html | 2 | ||||
-rw-r--r-- | zurb-F5-basic/templates/tags.html | 4 |
2 files changed, 3 insertions, 3 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> diff --git a/zurb-F5-basic/templates/tags.html b/zurb-F5-basic/templates/tags.html index cfd9480..7aec93a 100644 --- a/zurb-F5-basic/templates/tags.html +++ b/zurb-F5-basic/templates/tags.html @@ -2,7 +2,7 @@ {% block content %}
<ul class="circle">
- {% for tag, articles in tags|sort %}
+ {% for tag, articles in tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
<ul class="square">
{% for article in articles %}
@@ -12,4 +12,4 @@ {% endfor %}
</ul>
-{% endblock %}
\ No newline at end of file +{% endblock %}
|