diff gpp/templates/bio/elsewhere_links.html @ 30:a39907cd63e2

Decided against having an elsewhere templates directory. Just put that stuff in bio.
author Brian Neal <bgneal@gmail.com>
date Sun, 03 May 2009 20:18:14 +0000
parents
children 146ded23d05c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/templates/bio/elsewhere_links.html	Sun May 03 20:18:14 2009 +0000
@@ -0,0 +1,31 @@
+{% if social_nets or ims or websites %}
+<ul>
+   {% if social_nets %}
+   <li>Social Networks</li>
+   <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 %}
+      <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 %}
+      <li><img src="{{ MEDIA_URL }}icons/world.png" alt="{{ site.name }}" />
+      <a href="{{ site.url }}">{{ site.name }}</a></li>
+      {% endfor %}
+   </ul>
+   {% endif %}
+</ul>
+{% endif %}