]> git.notmuchmail.org Git - notmuch/blob - devel/notmuch-web/templates/base.html
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / devel / notmuch-web / templates / base.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html lang="en">
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8"
5   />
6         <meta name="viewport" content="width=device-width, initial-scale=1"> 
7 <link type="text/css" href="{{sprefix}}/css/jquery-ui.css" rel="stylesheet" />
8 <link type="text/css" href="{{sprefix}}/css/notmuch-0.1.css" rel="stylesheet" />
9 <script type="text/javascript" src="{{sprefix}}/js/jquery.js"></script>
10 <script type="text/javascript" src="{{sprefix}}/js/jquery-ui.js"></script>
11 <script type="text/javascript" src="{{sprefix}}/js/notmuch-0.1.js"></script>
12 <title>{{title}}</title>
13 </head><body>
14 <div data-role="page">
15 <div data-role="header">
16 {% block searchform %}
17 <form action="{{prefix}}/search/" method="GET" data-ajax="false">
18 <label for="terms">Terms</label><input id="terms" name="terms">
19 <label for="after">After</label><input id="after"
20 name="after"><input type="hidden" id="afters" name="afters">
21 <label for="before">Before</label><input id="before"
22 name="before"><input id="befores" type="hidden" name="befores">
23 <input type="submit" name="submit" id="submit" value="Search">
24 </form>
25 {% endblock searchform %}
26 <h2>{{title}}</h2>
27 </div>
28 <div data-role="content">
29 {% block content %}
30 <h2>Common tags</h2>
31 <ul>
32 {% for tag in tags %}
33   <li><a href="search/tag:{{ tag|url }}">{{ tag|e }}</a></li>
34 {% endfor %}
35 </ul>
36 </div>
37 {% endblock content %}
38 </div>
39 </body></html>