summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/thread.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-10-30 19:37:32 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-10-30 19:37:32 +0100
commit6273efb0f90255dea2c8db3e94de466f8022335a (patch)
treeef1d3a33cb3dcb4a244fb526524cccf4f2a547f5 /hyperkitty/templates/thread.html
parent04d00335f7a9ef541c7a68fc7eeb161a7163045b (diff)
downloadhyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.tar.gz
hyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.tar.xz
hyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.zip
Do some CSS refactoring
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r--hyperkitty/templates/thread.html8
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' %}