Mercurial > public > sg101
annotate gpp/templates/bio/elsewhere_links.html @ 385:2a03c69792d8
For #187; tune forums RSS settings. Set TTL to 1 hour; return 30 forum posts instead of 10; cache feed for 15 minutes instead of an hour.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 16 Mar 2011 02:13:38 +0000 |
parents | 88b2b9cb8c1f |
children |
rev | line source |
---|---|
bgneal@30 | 1 {% if social_nets or ims or websites %} |
bgneal@55 | 2 <ul class="icon-list"> |
bgneal@55 | 3 {% for net in social_nets %} |
bgneal@312 | 4 <li><img src="{{ STATIC_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" /> |
bgneal@30 | 5 <a href="{{ net.url }}">{{ net.name }}</a></li> |
bgneal@55 | 6 {% endfor %} |
bgneal@55 | 7 {% for im in ims %} |
bgneal@312 | 8 <li><img src="{{ STATIC_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" /> |
bgneal@30 | 9 <a href="{{ im.url }}">{{ im.name }}</a></li> |
bgneal@55 | 10 {% endfor %} |
bgneal@55 | 11 {% for site in websites %} |
bgneal@312 | 12 <li><img src="{{ STATIC_URL }}icons/world.png" alt="{{ site.name }}" /> |
bgneal@30 | 13 <a href="{{ site.url }}">{{ site.name }}</a></li> |
bgneal@55 | 14 {% endfor %} |
bgneal@30 | 15 </ul> |
bgneal@30 | 16 {% endif %} |