diff gpp/templates/ygroup/thread.html @ 343:cfad8d605cb8

Fixing #157; added goto the top of page intra-page links on forums and yahoo group templates.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Feb 2011 22:12:18 +0000
parents 0c18dfb1da1c
children
line wrap: on
line diff
--- a/gpp/templates/ygroup/thread.html	Sun Feb 27 01:58:49 2011 +0000
+++ b/gpp/templates/ygroup/thread.html	Sun Feb 27 22:12:18 2011 +0000
@@ -5,6 +5,7 @@
 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
 {% endblock %}
 {% block content %}
+<a name="top" class="intra"></a>
 {% if thread.page == 1 %}
 <h2 class="forum-nav"><a href="{% url 'ygroup-thread_index' %}">Yahoo Group Archives</a> &raquo; </h2>
 {% else %}
@@ -21,7 +22,10 @@
    <dt><a name="p{{ post.id }}"></a>{{ post.poster }} - {{ post.creation_date|date:"d M Y H:i:s" }}
    <a href="{{ post.get_absolute_url }}" rel="nofollow">
       <img src="{{ STATIC_URL }}icons/link.png" alt="permalink" title="permalink" /></a></dt>
-   <dd>{{ post.msg|linebreaks }}</dd>
+   <dd>
+   {{ post.msg|linebreaks }}
+   <p><a href="#top" class="quiet" title="Goto top of page">Top</a></p>
+   </dd>
    {% endfor %}
 </dl>
 {% include "ygroup/pagination.html" %}