diff gpp/templates/bio/elsewhere_links.html @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents 146ded23d05c
children
line wrap: on
line diff
--- a/gpp/templates/bio/elsewhere_links.html	Thu Jan 20 04:40:14 2011 +0000
+++ b/gpp/templates/bio/elsewhere_links.html	Thu Jan 27 02:56:10 2011 +0000
@@ -1,15 +1,15 @@
 {% if social_nets or ims or websites %}
 <ul class="icon-list">
    {% for net in social_nets %}
-      <li><img src="{{ MEDIA_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" />
+      <li><img src="{{ STATIC_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" />
       <a href="{{ net.url }}">{{ net.name }}</a></li>
    {% endfor %}
    {% for im in ims %}
-      <li><img src="{{ MEDIA_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" />
+      <li><img src="{{ STATIC_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" />
       <a href="{{ im.url }}">{{ im.name }}</a></li>
    {% endfor %}
    {% for site in websites %}
-      <li><img src="{{ MEDIA_URL }}icons/world.png" alt="{{ site.name }}" />
+      <li><img src="{{ STATIC_URL }}icons/world.png" alt="{{ site.name }}" />
       <a href="{{ site.url }}">{{ site.name }}</a></li>
    {% endfor %}
 </ul>