public
Description: Static website generator
Homepage:
Clone URL: git://github.com/btbytes/webgen.py.git
webgen.py / template.html
100644 48 lines (41 sloc) 1.208 kb
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
 
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>$title</title>
<meta name="generator" content="webgen.py http://github.com/btbytes/webgen.py/wikis">
<meta name="author" content="$from">
<link rel="stylesheet" href="$baseurl/css/webgen.css" type="text/css" media="screen" title="webgen style" charset="utf-8">
</head>
 
<body class="doc">
<div id="doc2" class="yui-t5">
<div id="hd">
<h1><a href="$baseurl/">$sitename</a></h1>
<!-- h2>$slogan</h2 -->
</div>
 
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div class="yui-g" id="main">
$content
<div class="dateline">
<p style="text-align:right;">created $date</p>
</div>
</div><!-- #main -->
</div><!-- yui-b -->
</div><!-- yui-main -->
 
<div class="yui-b">
<h3>Navigation</h3>
<ul id="sidenav">
<li><a href="$baseurl/">Home</a></li>
<li><a href="example.html">Example</a></li>
</ul>
</div><!-- yui-b -->
</div><!-- bd -->
 
<div id="ft">
<p>made with webgen.py</p>
</div><!-- #ft -->
 
</div><!-- .yui-t5 -->
</body>
</html>