changeset 55:146ded23d05c

#6; Fix elsewhere list display problems. Also fix incorrect XHTML.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Jun 2009 00:24:09 +0000
parents e249b5f9d180
children 9bfe07c26c78
files gpp/templates/bio/elsewhere_links.html
diffstat 1 files changed, 7 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/bio/elsewhere_links.html	Tue Jun 23 00:11:00 2009 +0000
+++ b/gpp/templates/bio/elsewhere_links.html	Tue Jun 23 00:24:09 2009 +0000
@@ -1,31 +1,16 @@
 {% if social_nets or ims or websites %}
-<ul>
-   {% if social_nets %}
-   <li>Social Networks</li>
-   <ul class="icon-list">
-      {% for net in social_nets %}
+<ul class="icon-list">
+   {% for net in social_nets %}
       <li><img src="{{ MEDIA_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" />
       <a href="{{ net.url }}">{{ net.name }}</a></li>
-      {% endfor %}
-   </ul>
-   {% endif %}
-   {% if ims %}
-   <li>Instant Messengers</li>
-   <ul class="icon-list">
-      {% for im in ims %}
+   {% endfor %}
+   {% for im in ims %}
       <li><img src="{{ MEDIA_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" />
       <a href="{{ im.url }}">{{ im.name }}</a></li>
-      {% endfor %}
-   </ul>
-   {% endif %}
-   {% if ims %}
-   <li>Websites</li>
-   <ul class="icon-list">
-      {% for site in websites %}
+   {% endfor %}
+   {% for site in websites %}
       <li><img src="{{ MEDIA_URL }}icons/world.png" alt="{{ site.name }}" />
       <a href="{{ site.url }}">{{ site.name }}</a></li>
-      {% endfor %}
-   </ul>
-   {% endif %}
+   {% endfor %}
 </ul>
 {% endif %}