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
|
<!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" metal:define-macro="main">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title metal:define-slot="title"></title>
<link rel="stylesheet"
tal:attributes="href python:branch.static_url('/static/css/global.css')" />
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-core.js')"></script>
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-more.js')"></script>
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
<script language="javascript">
var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
</script>
<metal:block metal:define-slot="header_extras" />
</head>
<body>
<!-- Loggerhead Content Area -->
<div id="finderBox">
<tal:search-box define="navigation navigation"
replace="structure python:search_box(branch,
navigation)" />
<div>
<tal:feed-link replace="structure python:feed_link(branch, url)" />
</div>
</div>
<tal:menu define="fileview_active fileview_active"
replace="structure python:menu(branch, url, fileview_active)" />
<div id="loggerheadCont">
<div id="search_terms"></div>
<h1 metal:define-slot="heading"></h1>
<div metal:define-slot="content"></div>
<p class="fl">Loggerhead runs on <a href="http://bazaar-vcs.org/" class="link">Bazaar</a> branches</p>
</div>
</body>
</html>
|