summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message.html
diff options
context:
space:
mode:
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 %}