changeset 284:df2c81f705a8

Forgot to add this file in last revision (r305).
author Brian Neal <bgneal@gmail.com>
date Mon, 04 Oct 2010 01:01:29 +0000
parents 593fb6dbd449
children 8fd4984d5c3b
files gpp/templates/forums/navigation_tag.html
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/templates/forums/navigation_tag.html	Mon Oct 04 01:01:29 2010 +0000
@@ -0,0 +1,10 @@
+<h2 class="forum-nav"><a href="{% url forums-index %}">SurfGuitar101 Forums</a> &raquo;
+{% for nav_item in nav_list %}
+   {% if not forloop.last %}
+      <a href="{{ nav_item.url }}">{{ nav_item.name }}</a> &raquo;
+   {% else %}
+      </h2><h3 class="forum-nav">{{ nav_item.name }}</h3>
+   {% endif %}
+{% empty %}
+   </h2>
+{% endfor %}