summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-01-21 12:00:02 -0600
committerAurélien Bompard <aurelien@bompard.org>2013-01-23 06:11:31 -0500
commit431677576603b58c42fc488f174ef0254a7a430c (patch)
tree731ae4d9c7c965536ef6c7ced18dc285b70a862c /hyperkitty/templates/message.html
parent0f294dd468ceeaf6a18c0595c8058efd1503dfec (diff)
downloadhyperkitty-431677576603b58c42fc488f174ef0254a7a430c.tar.gz
hyperkitty-431677576603b58c42fc488f174ef0254a7a430c.tar.xz
hyperkitty-431677576603b58c42fc488f174ef0254a7a430c.zip
Switch to a fluid layout
Diffstat (limited to 'hyperkitty/templates/message.html')
-rw-r--r--hyperkitty/templates/message.html28
1 files changed, 19 insertions, 9 deletions
diff --git a/hyperkitty/templates/message.html b/hyperkitty/templates/message.html
index 78462b5..c4df974 100644
--- a/hyperkitty/templates/message.html
+++ b/hyperkitty/templates/message.html
@@ -10,16 +10,26 @@
{% block content %}
-<div class="message-header">
- <a class="thread-back"
- href="{% url thread threadid=message.thread_id, mlist_fqdn=list_address %}#{{message.message_id_hash}}">
- </a> {# the background image will be a "back to thread" button #}
- <h1>{{ message.subject }}</h1>
-</div>
+<div class="row-fluid">
+
+{% include 'threads/month_list.html' %}
+
+ <div class="span7">
+
+ <div class="message-header">
+ <a class="thread-back"
+ href="{% url thread threadid=message.thread_id, mlist_fqdn=list_address %}#{{message.message_id_hash}}">
+ </a> {# the background image will be a "back to thread" button #}
+ <h1>{{ message.subject }}</h1>
+ </div>
-<section id="thread_content">
- {% include 'messages/first_email.html' with first_mail=message %}
-</section>
+ <section id="thread_content">
+ {% include 'messages/first_email.html' with first_mail=message %}
+ </section>
+
+ </div>
+
+</div>
{% endblock %}