diff --git a/uikit/templates/articles.html b/uikit/templates/articles.html
index 845439541..17f9e3c95 100644
--- a/uikit/templates/articles.html
+++ b/uikit/templates/articles.html
@@ -12,7 +12,7 @@
{{'all the articles'|capitalize}}
-{% for article in articles|sort %}
+{% for article in articles %}
- {{ article.title }}
{% endfor %}
diff --git a/zurb-F5-basic/templates/tags.html b/zurb-F5-basic/templates/tags.html
index cfd948009..7aec93a43 100644
--- a/zurb-F5-basic/templates/tags.html
+++ b/zurb-F5-basic/templates/tags.html
@@ -2,7 +2,7 @@
{% block content %}
- {% for tag, articles in tags|sort %}
+ {% for tag, articles in tags %}
- {{ tag }}
{% for article in articles %}
@@ -12,4 +12,4 @@
{% endfor %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}