Mercurial > public > sg101
comparison gpp/templates/forums/forum_index.html @ 263:307a74e28112
Fixing #113; re-arrange the RSS forum feed icons around a bit.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 23 Sep 2010 00:26:07 +0000 |
parents | 6a5549c2efb5 |
children | 593fb6dbd449 |
comparison
equal
deleted
inserted
replaced
262:5232d5808057 | 263:307a74e28112 |
---|---|
1 {% extends 'base.html' %} | 1 {% extends 'base.html' %} |
2 {% load forum_tags %} | 2 {% load forum_tags %} |
3 {% block custom_head %} | |
4 {% if feed %} | |
5 <link rel="alternate" type="application/rss+xml" title="{{ feed.name }}" href="{{ feed.feed }}" /> | |
6 {% endif %} | |
7 {% endblock %} | |
3 {% block title %}Forums: {{ forum.name }}{% endblock %} | 8 {% block title %}Forums: {{ forum.name }}{% endblock %} |
4 {% block content %} | 9 {% block content %} |
5 <h2>Forums: {{ forum.name }}</h2> | 10 <h2>Forums: {{ forum.name }} |
11 {% if feed %} | |
12 <a href="{{ feed.feed }}"><img src="{{ MEDIA_URL }}icons/feed.png" alt="RSS Feed" title="Feed for this forum" /></a> | |
13 {% endif %} | |
14 </h2> | |
6 | 15 |
7 <h3> | 16 <h3> |
8 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » | 17 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » |
9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> | 18 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> |
10 </h3> | 19 </h3> |