final design tidy up - handing over now
[catagits/Gitalist.git] / root / wrapper.tt2
CommitLineData
c8a42dd5 1[%- IF no_wrapper || template.name.match('\.(css|js|txt)'); content; ELSE; -%]
82f94bce 2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
d3feefcf 5<head>
f71a83ab 6 <!-- git core binaries version [% git_version %] -->
82f94bce 7 <meta charset="utf-8" />
8 <meta name="generator" content="gitweb/[% version %] git/[% git_version %]" />
9 <meta name="robots" content="index, nofollow" />
a349e797 10 <title>[%# FIXME - MING %][%-
da8f4f82 11 title = BLOCK;
12 c.config.sitename;
87581f05 13 IF Repository; ' - ' _ Repository.name | html; END;
906a2dd2 14 IF c.action; ' / ' _ c.action; END;
15 IF filename; ' - ' _ filename | html; END;
a349e797 16 IF c.action && c.action == 'tree'; '/'; END;
da8f4f82 17 END;
18 title;
19 -%] (Gitalist)</title>
20 [% INCLUDE '_header_feeds.tt2' %]
82f94bce 21
22 <link rel="stylesheet" type="text/css" href="[% c.uri_for('/static/css/core.css') %]" />
23 <link rel="shortcut icon" href="[% c.uri_for('/static/git-favicon.png') %]" type="image/png" />
24701964 24</head>
25
26<body>
27
08d8bb08 28<div id="header_holder">
82f94bce 29 <div class="sub_holder">
08d8bb08 30 <div id="header">
31 <a href="[% c.uri_for('/') %]" id="logo"><img src="[% c.uri_for('/static/i/logo.png') %]" alt="Gitalist" /></a>
32
33 <div class="search">
34 [% IF Repository; INCLUDE 'nav/search.tt2'; ELSE; %]
35
36 <form method="get" action="[% c.uri_for_action('/search') %]" enctype="application/x-www-form-urlencoded">
37 <p class="projsearch">Search:
38 <input type="text" name="s" value="[% search_text %]" />
39 </p>
40 </form>
41 [% END %]
42 </div>
82f94bce 43 </div>
44
45
46 <div id="nav_logs" [% 'style="visibility:hidden"' IF c.action.name == "index" %]>
47 <ul>
48 [% IF c.req.captures.size == 1; SET path = 'repository'; ELSE; SET path = 'ref'; END %]
189f3b00 49
82f94bce 50 <li [% 'class="selected"' IF c.action.name.match('longlog') %]><a href="[% c.uri_for_action('/' _ path _ '/longlog', c.req.captures) %]" id="log_full">Long log</a></li>
08d8bb08 51 <li [% 'class="selected"' IF c.action.name.match('shortlog') %]><a href="[% c.uri_for_action('/' _ path _ '/shortlog', c.req.captures) %]" id="log_short">Short log</a></li>
82f94bce 52 </ul>
53 </div>
54
55 <h1>
56 <a href="[% c.uri_for('/') %]">Home</a>
57
58 [%- IF Repository %]
59 / <a href="[% c.uri_for_action('/repository/summary', [Repository.name]) %]/shortlog">[% Repository.name %]</a>
60 [%- END %]
61 /
62
eab82ed1 63
08d8bb08 64 [% c.action.name.replace("_"," ").replace("log", " log").replace("fancy","").replace("index","Repositories") FILTER ucfirst %]
eab82ed1 65
66
67
82f94bce 68 </h1>
69
70 </div>
71</div>
72
73
74
75<div id="content_holder">
76 <div id="content" class="sub_holder">
77 <div id="content_inner">
1fd8159c 78
82f94bce 79
d3feefcf 80
10938267 81 [% content %]
10938267 82
82f94bce 83
82f94bce 84 </div>
85 </div>
86</div>
69421cb7 87
eab82ed1 88<div id="footer_holder">
89 <div id="footer" class="sub_holder">
90
91 <p>[% IF Repository; Repository.description | html; END; %]</p>
92
93 <a title="git homepage" href="http://git-scm.org"><img src="[% c.uri_for('/logo.png') %]" id="git_logo" alt="git" /></a>
94
95 <div id="feeds">
96 [% INCLUDE 'inc/footer_feeds.tt2' %]
97 </div>
82f94bce 98 </div>
eab82ed1 99
2cf1e781 100</div>
101
82f94bce 102
eab82ed1 103<div id="debug_holder">
104 <div id="debug" class="sub_holder">
82f94bce 105
eab82ed1 106 <p>Debug:</p>
107
108 [% USE Dumper %]
109 <pre>
110 [% Repository.path %]
08d8bb08 111 [% Dumper.dump(c.action.name) %]
eab82ed1 112 </pre>
113
114 </div>
115</div>
ed30bf20 116
d3feefcf 117</body>
118</html>
c8a42dd5 119[%- END -%]