Add .mailmap to standardize author names and emails.
[chemdb.git] / template / web / 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           xml:lang="en">
4
5 <html>
6   <head>
7     <title>ChemDB</title>
8 <!--
9     <link rel="stylesheet" type="text/css" media="screen"
10           href="/static/style.css"/>
11 -->
12   </head>
13
14   <body>
15     <div id="main-pane">
16       <div id="header" class="inside-main-pane">
17         <h1><a href="./">ChemDB</a></h1>
18       </div>
19       <div id="content-pane" class="inside-main-pane">
20         <h1>{% block page_title %}{% endblock %}</h1>
21         {% block content %}{% endblock %}
22       </div>
23       <div id="footer" class="inside-main-pane">
24         <p>
25           Powered by
26           <a href="http://www.physics.drexel.edu/">Trevor King's</a>
27           <a href="http://www.physics.drexel.edu/~wking/code/git/git.php?p=chemdb.git">ChemDB</a>.
28           Built using <a href="http://cherrypy.org/">CherryPy</a>
29           and <a href="http://jinja.pocoo.org/2/">Jinja2</a>.
30         </p>
31       </div>
32     </div>
33   </body>
34 </html>