Parent: [02797d] (diff)

Child: [925f68] (diff)

Download this file

wiki_master.html    33 lines (30 with data), 1.3 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.pyforge_templates}/master.html"/>
<head py:match="head" py:attrs="select('@*')">
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title py:replace="''">Your title goes here</title>
<meta py:replace="select('*')"/>
<py:for each="blob in g.resource_manager.emit('head_css')">$blob</py:for>
<py:for each="blob in g.resource_manager.emit('head_js')">$blob</py:for>
</head>
<body py:match="body" py:attrs="select('@*')">
<py:for each="blob in g.resource_manager.emit('body_top_js')">$blob</py:for>
<div py:replace="select('*|text()')"/>
<div id="create_wiki_page_holder" title="Create New Page" style="display:none">
<form>
<ol>
<li>
<label>Name</label>
<input type="text" name="name"/>
</li>
</ol>
</form>
</div>
<py:for each="blob in g.resource_manager.emit('body_js')">$blob</py:for>
<script type="text/javascript" src="${g.app_static('js/wiki.js')}"></script>
</body>
</html>