File: base.html

package info (click to toggle)
python-tornado 6.5.4-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,208 kB
  • sloc: python: 28,773; javascript: 156; sh: 100; ansic: 72; makefile: 49; xml: 49; sql: 23
file content (31 lines) | stat: -rw-r--r-- 988 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8">
  <title>{{ escape(handler.settings["blog_title"]) }}</title>
  <link rel="stylesheet" href="{{ static_url(" blog.css") }}" type="text/css">
  <link rel="alternate" href="/feed" type="application/atom+xml" title="{{ escape(handler.settings[" blog_title"]) }}">
  {% block head %}{% end %}
</head>

<body>
  <div id="body">
    <div id="header">
      <div style="float:right">
        {% if current_user %}
        <a href="/compose">{{ _("New post") }}</a> -
        <a href="/auth/logout?next={{ url_escape(request.path) }}">{{ _("Sign out") }}</a>
        {% else %}
        {% raw _('<a href="%(url)s">Sign in</a> to compose/edit') % {"url": "/auth/login?next=" +
        url_escape(request.path)} %}
        {% end %}
      </div>
      <h1><a href="/">{{ escape(handler.settings["blog_title"]) }}</a></h1>
    </div>
    <div id="content">{% block body %}{% end %}</div>
  </div>
  {% block bottom %}{% end %}
</body>

</html>