blob: 9178b586658c5477088cbe2067fb761b6e51a414 (
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
|
<!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="pyramid 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>Pyramid</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://pylonshq.com/pyramid">Pyramid</a> web
application framework.</h1>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<div id="sidebar">
<ul>
<li id="search">
<h2>Search<br/> <code>Pyramid</code> Documentation</h2>
<form method="get"
action="http://pylonshq.com/docs/pyramid/current/searchresults">
<fieldset>
<input type="text" id="q" name="text" value="" />
<input type="submit" id="x" value="Search" />
</fieldset>
</form>
</li>
<li>
<h2><code>Pyramid</code> links</h2>
<ul>
<li><a
href="http://pylonshq.com/docs/pyramid/current/#narrative-documentation">Narrative
Documentation</a>
</li>
<li>
<a
href="http://pylonshq.com/docs/pyramid/current/#api-documentation">API
Documentation</a>
</li>
<li>
<a
href="http://pylonshq.com/docs/pyramid/current/#tutorials">Tutorials</a>
</li>
<li>
<a
href="http://pylonshq.com/docs/pyramid/current/#change-history">Change
History</a>
</li>
<li>
<a
href="http://pylonshq.com/docs/pyramid/current/#sample-applications">Sample
Applications</a>
</li>
<li>
<a
href="http://pylonshq.com/docs/pyramid/current/#support-and-development">Support
and Development</a>
</li>
<li>
<a
href="irc://irc.freenode.net#pylons">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>
|