diff options
author | Justin Mayer <entroP@gmail.com> | 2013-09-14 12:50:55 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-09-14 12:50:55 -0700 |
commit | d5608d00415d2a3aade825ac5d9b9aba8361c590 (patch) | |
tree | af15af41b651b6f7d00f60cc983658f83ef5afab /gum/templates/sidebar.html | |
parent | a217f4239e87d4d17c518e0ecdb7cd20a6752f12 (diff) | |
parent | 9a9c2a5c86808241ade4c0ffbe1e85c10c8864dd (diff) | |
download | pelican-themes-d5608d00415d2a3aade825ac5d9b9aba8361c590.tar.gz |
Merge pull request #142 from shantanoo/patch-1
URL and name were being displayed incorrectly.
Diffstat (limited to 'gum/templates/sidebar.html')
-rw-r--r-- | gum/templates/sidebar.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html index 442549e..25b22e4 100644 --- a/gum/templates/sidebar.html +++ b/gum/templates/sidebar.html @@ -43,7 +43,7 @@ <nav class="widget"> <h4>Social</h4> <ul> - {% for url, name in SOCIAL %} + {% for name, url in SOCIAL %} <li><a href="{{ url|e }}">{{ name }}</a></li> {% endfor %} </ul> |