Began versioning
[cookbook.git] / cookbook / template / base.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
4 <html>
5     <head>
6         <title>{{ cookbook.name }}</title>
7 <!--
8         <link rel="stylesheet" type="text/css" media="screen"
9               href="/static/style/aal.css" />
10         <link rel="stylesheet" type="text/css" media="screen"
11               href="/static/style/cfbe.css" />
12 -->
13     </head>
14
15     <body>
16         <div id="main-pane">
17             <div id="header" class="inside-main-pane">
18                 <h1>{{ cookbook.name }}</h1>
19             </div>
20 <!--
21             <div id="navigation" class="inside-main-pane">
22                 <span id="filters">
23                     <a href="/">Open</a>
24                     <a href="/?status=closed">Closed</a>
25                     <a href="" id="filter-assignee">Assigned to...</a>
26                     <a href="" id="filter-target">Scheduled for...</a>
27                 </span>
28                 <span id="create">
29                     <a href="" id="create-bug">&#43; Create a new bug</a>
30                 </span>
31                 <span id="create-form">
32                     <form action="/create" method="post">
33                         <fieldset>
34                             <input type="text"
35                                    id="create-summary" name="summary" />
36                             <button id="create-button"
37                                     type="submit">Create</button>
38                         </fieldset>
39                     </form>
40                 </span>
41             </div>
42             <div id="filter-pane" class="inside-main-pane"></div>
43 -->
44             <div id="content-pane" class="inside-main-pane">
45                 <h1>{% block page_title %}{% endblock %}</h1>
46                 {% block content %}{% endblock %}
47             </div>
48             <div id="footer" class="inside-main-pane">
49                 <p>
50                     Powered by
51                     <a href="http://www.physics.drexel.edu">Trevor King's</a>
52                     <a href="">Cookbook</a>.
53                     Built using <a href="http://cherrypy.org">CherryPy</a>
54                     and <a href="http://jinja.pocoo.org/2/">Jinja2</a>.
55                 </p>
56             </div>
57         </div>
58     </body>
59 </html>