summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authortoshio <toshio@mm3test.fedoraproject.org>2012-03-12 23:27:56 +0000
committertoshio <toshio@mm3test.fedoraproject.org>2012-03-12 23:27:56 +0000
commit1c4f1cb5a0332a1fcc4d2fa8cf908f029cf23594 (patch)
tree53779390ff498842d2b919da62182fe582d4d0ca /templates/base.html
Import the initial version of the hyperkitty archiver
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..9445add
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="ROBOTS" content="INDEX, FOLLOW" />
+
+ <title>{% block title %}Mail app{% endblock %}</title>
+ <meta name="author" content="" />
+
+ <meta name="dc.language" content="en" />
+
+ <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css" />
+
+ {% block additional_headers %}
+ {% endblock %}
+</head>
+
+<body>
+ <!-- Header -->
+ <div class="header">
+ {% block header %}
+ <div id="headline">
+ <ul class="inline-block">
+ <li id="list_name"><a href="/">{{list_name}}</a></li>
+ <li id="page_date">{{month}}</li>
+ </ul>
+ {% if month_participants and month_discussions %}
+ <ul class="inline-block" id="top_right">
+ <li class="participant"> {{month_participants}} participants</li>
+ <li class="discussion"> {{month_discussions}} discussions</li>
+ <li class="saved"> 1 saved</li>
+ </ul>
+ {% endif %}
+ </div>
+ <p id="list_email">
+ <a href="mailto:{{list_address}}">
+ {{list_address}}
+ </a>
+ </p>
+ <div id="searchbox">
+ <form action="/search" method="get">
+ {{ search_form }}
+ </form>
+ </div>
+ <div id="newthread">
+ <a href="#Create_new_thread">
+ <img src="{{ STATIC_URL }}img/newthread.png" alt="New thread" />
+ </a>
+ </div>
+ <hr id="white"/>
+ <hr />
+ </div>
+ {% endblock %}
+
+ <div class="content">
+ {% block content %}
+ {% endblock %}
+ </div>
+
+</body>
+</html>