Web Design first wave of conversion
[catagits/Gitalist.git] / root / wrapper.tt2
1 [%- IF no_wrapper || template.name.match('\.(css|js|txt)'); content; ELSE; -%]
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">
5 <head>
6   <!-- git core binaries version [% git_version %] -->
7   <meta charset="utf-8" />
8   <meta name="generator" content="gitweb/[% version %] git/[% git_version %]" />
9   <meta name="robots" content="index, nofollow" />
10   <title>[%# FIXME - MING %][%-
11     title = BLOCK;
12       c.config.sitename;
13       IF Repository; ' - ' _ Repository.name | html; END;
14       IF c.action;   ' / ' _ c.action; END;
15       IF filename;   ' - ' _ filename | html; END;
16       IF c.action && c.action == 'tree'; '/'; END;
17     END;
18     title;
19   -%] (Gitalist)</title>
20   [% INCLUDE '_header_feeds.tt2' %]
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" />
24 </head>
25
26 <body>
27
28 <div id="header">
29         <div class="sub_holder">
30                 <a href="[% c.uri_for('/') %]" id="logo"><img src="[% c.uri_for('/static/i/logo.png') %]" alt="Gitalist" /></a>
31         
32                 <div class="search">
33                         [% IF Repository; INCLUDE 'nav/search.tt2'; END %]
34                 </div>
35                 
36                 
37                 <div id="nav_logs" [% 'style="visibility:hidden"' IF c.action.name == "index" %]>
38                         <ul>
39                                 [% IF c.req.captures.size == 1; SET path = 'repository'; ELSE; SET path = 'ref'; END %]
40                                 <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>
41                                 <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>
42                         </ul>
43                 </div>
44         
45                 <h1>
46                         <a href="[% c.uri_for('/') %]">Home</a>
47                 
48                         [%- IF Repository %]
49                 / <a href="[% c.uri_for_action('/repository/summary', [Repository.name]) %]/shortlog">[% Repository.name %]</a>
50                         [%- END %]
51                         /
52                         
53                         [% c.action.name.replace("_"," ").replace("log", " log") FILTER ucfirst %]
54
55                         </h1>
56         
57         </div>
58 </div>
59
60
61
62 <div id="content_holder">
63         <div id="content" class="sub_holder">
64                 <div id="content_inner">
65
66         
67
68  [% content %]
69
70  
71  
72   [% INCLUDE 'nav/actions.tt2' %]
73                 </div>
74         </div>
75 </div>
76
77 <div id="footer">
78         <div class="sub_holder">
79         [%
80                 IF Repository; Repository.description | html; END;
81                 INCLUDE 'inc/footer_feeds.tt2';
82         %]
83         <a title="git homepage" href="http://git-scm.org"><img src="[% c.uri_for('/logo.png') %]" alt="git" /></a>
84         </div>
85 </div>
86
87
88
89 +[% USE Dumper %]
90 +<pre>
91 [% Repository.path %]
92 +[% Dumper.dump(c.req.action) %]
93 +</pre>
94
95 </body>
96 </html>
97 [%- END -%]