aboutsummaryrefslogtreecommitdiffstats
path: root/zurb-F5-basic
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2017-09-04 11:34:47 -0700
committerGitHub <noreply@github.com>2017-09-04 11:34:47 -0700
commitefb323d63db6facd23c544bed7daff2732c67350 (patch)
treeea569b31f14736e8929dc58646ce10c949a2b140 /zurb-F5-basic
parentfdf6b184aba62a57a9afb9f2819fa8fa5d89684a (diff)
parentf1a4bba40281fa21816d6619d32136fc6a8f086d (diff)
downloadpelican-themes-efb323d63db6facd23c544bed7daff2732c67350.tar.gz
Merge pull request #506 from joshmorel/master
Fix Python 3 unorderable types issue with multiple themes
Diffstat (limited to 'zurb-F5-basic')
-rw-r--r--zurb-F5-basic/templates/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/zurb-F5-basic/templates/tags.html b/zurb-F5-basic/templates/tags.html
index 9cba867..cfd9480 100644
--- a/zurb-F5-basic/templates/tags.html
+++ b/zurb-F5-basic/templates/tags.html
@@ -5,7 +5,7 @@
{% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
<ul class="square">
- {% for article in articles|sort %}
+ {% for article in articles %}
<li><a href="{{ SITEURL }}/{{ article.url }}"><small>{{ article.title }}</small></li>
{% endfor %}
</ul>