summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message_new.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/message_new.html')
-rw-r--r--hyperkitty/templates/message_new.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/hyperkitty/templates/message_new.html b/hyperkitty/templates/message_new.html
new file mode 100644
index 0000000..c630127
--- /dev/null
+++ b/hyperkitty/templates/message_new.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+{% load gravatar %}
+{% load hk_generic %}
+{% load storm %}
+
+
+{% block title %}
+Create a new thread - {{ mlist.display_name|default:mlist.name|escapeemail }} - {{ app_name|title }}
+{% endblock %}
+
+{% block content %}
+
+<div class="row-fluid">
+
+{% include 'threads/month_list.html' %}
+
+ <div class="span7">
+
+ <div class="message-header">
+ <h1>Create a new thread</h1>
+ </div>
+
+ <section id="thread_content">
+ {% include 'messages/reply_form.html' %}
+ </section>
+
+ </div>
+
+</div>
+
+{% endblock %}
+
+{# vim: set noet: #}