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

« back to all changes in this revision

Viewing changes to vendor/tornado/demos/appengine/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>{{ escape(handler.settings["blog_title"]) }}</title>
 
6
    <link rel="stylesheet" href="/static/blog.css" type="text/css"/>
 
7
    <link rel="alternate" href="/feed" type="application/atom+xml" title="{{ escape(handler.settings["blog_title"]) }}"/>
 
8
    {% block head %}{% end %}
 
9
  </head>
 
10
  <body>
 
11
    <div id="body">
 
12
      <div id="header">
 
13
        <div style="float:right">
 
14
          {% if not current_user %}
 
15
            {{ _('<a href="%(url)s">Sign in</a> to compose/edit') % {"url": escape(users.create_login_url(request.uri))} }}
 
16
          {% else %}
 
17
            {% if current_user.administrator %}
 
18
              <a href="/compose">{{ _("New post") }}</a> -
 
19
            {% end %}
 
20
            <a href="{{ escape(users.create_logout_url(request.uri)) }}">{{ _("Sign out") }}</a>
 
21
          {% end %}
 
22
        </div>
 
23
        <h1><a href="/">{{ escape(handler.settings["blog_title"]) }}</a></h1>
 
24
      </div>
 
25
      <div id="content">{% block body %}{% end %}</div>
 
26
    </div>
 
27
    {% block bottom %}{% end %}
 
28
  </body>
 
29
</html>