blob: 72e4fec9d6f376c278e34fda21d1a8e5dfb840f9 (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<!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"
xmlns:tal="http://xml.zope.org/namespaces/tal">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>${project} Application</title>
<meta name="keywords" content="python web application" />
<meta name="description" content="repoze.bfg web application" />
<link href="${request.application_url}/static/default.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- start header -->
<div id="logo">
<h2><code>${project}</code>, a <code>repoze.bfg</code> application</h2>
</div>
<div id="header">
<div id="menu">
</div>
</div>
<!-- end header -->
<div id="wrapper">
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="content">
<div class="post">
<h1 class="title">Welcome to <code>${project}</code>, an
application generated by the <a
href="http://static.repoze.org/bfgdocs">repoze.bfg</a> web
application framework.</h1>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<div id="sidebar">
<ul>
<li id="search">
<h2>Search<br/> <code>repoze.bfg</code> Documentation</h2>
<form method="get"
action="http://static.repoze.org/bfgdocs/search.html">
<fieldset>
<input type="text" id="q" name="q" value="" />
<input type="submit" id="x" value="Search" />
</fieldset>
</form>
</li>
<li>
<h2><code>repoze.bfg</code> links</h2>
<ul>
<li><a
href="http://static.repoze.org/bfgdocs/#narrative-documentation">Narrative
Documentation</a>
</li>
<li>
<a
href="http://static.repoze.org/bfgdocs/#api-documentation">API
Documentation</a>
</li>
<li>
<a
href="http://static.repoze.org/bfgdocs/#tutorials">Tutorials</a>
</li>
<li>
<a
href="http://static.repoze.org/bfgdocs/#change-history">Change
History</a>
</li>
<li>
<a
href="http://static.repoze.org/bfgdocs/#sample-applications">Sample
Applications</a>
</li>
<li>
<a
href="http://static.repoze.org/bfgdocs/#support-and-development">Support
and Development</a>
</li>
<li>
<a
href="irc://irc.freenode.net#repoze">IRC Channel</a>
</li>
</ul>
</li>
</ul>
</div>
<!-- end sidebar -->
<div style="clear: both;"> </div>
</div>
</div>
<!-- end page -->
<!-- start footer -->
<div id="footer">
<p id="legal">( c ) 2008. All Rights Reserved. Template design
by <a href="http://www.freecsstemplates.org/">Free CSS
Templates</a>.</p>
</div>
<!-- end footer -->
</body>
</html>
|