diff options
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r-- | hyperkitty/templates/thread.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html index be2d875..c55d445 100644 --- a/hyperkitty/templates/thread.html +++ b/hyperkitty/templates/thread.html @@ -4,13 +4,9 @@ {% load hk_generic %} {% load storm %} -{% block additional_stylesheets %} -<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/thread.css" /> -{% endblock %} - {% block content %} - <header> + <div class="thread-header"> {% for thread in neighbors %} {% if thread %} <a class="thread-{% ifequal forloop.counter 1 %}older{% else %}newer{% endifequal %}" @@ -19,7 +15,7 @@ {% endif %} {% endfor %} <h1>{{ subject }}</h1> - </header> + </div> {% include 'threads/right_col.html' %} |