File: base.html

package info (click to toggle)
python-lamson 1.0pre11-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 3,508 kB
  • ctags: 1,036
  • sloc: python: 5,772; xml: 177; makefile: 19
file content (52 lines) | stat: -rw-r--r-- 1,499 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    {% block header %}
	<link rel="stylesheet" type="text/css" href="/styles/reset.css" />
    <link rel="stylesheet" type="text/css" href="/styles/main.css" />
    {% endblock %}

    {% block title %}
    <title>OneShotBlog(TM): Latest Posts</title>
    {% endblock %}
</head>

<body>
	<div class="wrapper">
		<div class="header">
            <h1>
                {% block display_title %}
                <a href="/index.html">One. Sh<span>o</span>t. Blog.</a>
                {% endblock %}
            </h1>
			<ul>
				<li><a href="/index.html">latest</a></li>
				<li><a href="/about.html">about</a></li>
				<li><a href="/help.html">help</a></li>
			</ul>
		</div>
		<ul class="notifications">
            {% block notifications %}
			<li>
				<div>
                    <h3>About OneShotBlog(TM)</h3>
                    <p>An example project for <a href="http://lamsonproject.org">Lamson</a>.</p>
				</div>
                </li>
            {% endblock %}
			<li class="footer">
				<div>
					<p>Software Copyright (C) 2009 Zed Shaw. Posts Copyright by their owners, sue them.</p>
				</div>
			</li>
		</ul>
        <div class="content">
            {% block content %}
            {% endblock %}
		</div>
	</div>
</body>
</html>