summaryrefslogtreecommitdiffstats
path: root/templates/base_thread.html
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-20 02:54:17 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-20 02:54:17 -0400
commit5071591286b89bd05fb9febed308fc219bf7deca (patch)
tree67a738ac7d5e2e56f35cfe22997cc38f2f5a617f /templates/base_thread.html
parentc5c7fa5f7ff3f09ea735d3d054708fc2164792fb (diff)
downloadhyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.gz
hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.tar.xz
hyperkitty-5071591286b89bd05fb9febed308fc219bf7deca.zip
removing all base_*.html template files. All templates now extends single base.html
Diffstat (limited to 'templates/base_thread.html')
-rw-r--r--templates/base_thread.html95
1 files changed, 0 insertions, 95 deletions
diff --git a/templates/base_thread.html b/templates/base_thread.html
deleted file mode 100644
index dea3b2d..0000000
--- a/templates/base_thread.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!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">
- <div id="headline">
- <ul class="inline-block">
- {% if list_address %}
- <li id="list_name"><a href="/list/{{list_address}}">{{list_name}}</a></li>
- {% else %}
- <li id="list_name"><a href="/list/">{{list_name}}</a></li>
- {% endif %}
- <li id="page_date">{{month}}</li>
- </ul>
- <div id="top_right">
- <form action="/search/{{list_address}}" method="get">
- <ul class="inline-block">
- {{ search_form.as_ul }}
- </ul>
- </form>
- </div>
- </div>
- <p id="list_email">
- <a href="mailto:{{list_address}}">
- {{list_address}}
- </a>
- </p>
- <p id="list_email" class='inline'>
- <a href="/">
- All lists
- </a>
- </p>
- <div id="thread_nav">
- {% if next_thread %}
- <div id="newewthread" class="inline-block">
- <a href="{{ next_thread_id }}">
- <img src="{{ STATIC_URL }}img/button_newer.png" alt="New thread" />
- </a>
- <br />
- {{next_thread}}
- </div>
- {% endif %}
-
- <div class="inline-block thread_title">
- <span class="type type_question">
- <a href="/tag/question"> question </a>
- </span>
- <br />
- {{first_mail.email.subject}}
- <ul class="inline thread_info">
- <li class="participant"> {{participants|length}} participants</li>
- <li class="discussion"> {{answers}} comments</li>
- </ul>
- </div>
-
- {% if prev_thread %}
- <div id="olderhread" class="inline-block right">
- <a href="{{ prev_thread_id }}">
- <img src="{{ STATIC_URL }}img/button_older.png" alt="New thread" />
- </a>
- <br />
- {{prev_thread}}
- </div>
- {% endif %}
-
- </div>
-
-
- <hr id="white"/>
- <hr />
- </div>
-
- <div class="content">
- {% block content %}
- {% endblock %}
- </div>
-
-</body>
-</html>