~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/tornado/website/templates/base.html

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
2
<html xmlns="http://www.w3.org/1999/xhtml">
 
3
  <head>
 
4
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 
 
5
    <title>{% block title %}Tornado Web Server{% end %}</title>
 
6
    <link rel="stylesheet" href="/static/base.css" type="text/css"/>
 
7
    {% block head %}{% end %}
 
8
  </head>
 
9
  <body>
 
10
    <div id="body">
 
11
      <div id="header">
 
12
        <table>
 
13
          <tr>
 
14
            <td class="logo"><a href="/"><img src="/static/tornado.png" alt="Tornado"/></a></td>
 
15
            <td class="title">{% block headertitle %}{% end %}</td>
 
16
          </tr>
 
17
        </table>
 
18
      </div>
 
19
      <div id="content">{% block body %}{% end %}</div>
 
20
      <div id="footer">
 
21
        <div>Tornado is one of <a href="http://developers.facebook.com/opensource.php">Facebook's open source technologies</a>. It is available under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Licence, Version 2.0</a>.</div>
 
22
        <div>This web site and all documentation is licensed under <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons 3.0</a>.</div>
 
23
      </div>
 
24
    </div>
 
25
    {% block bottom %}{% end %}
 
26
  </body>
 
27
</html>