Starting to move away from the gitweb stylistic roots.
[catagits/Gitalist.git] / root / wrapper.tt2
CommitLineData
c8a42dd5 1[%- IF no_wrapper || template.name.match('\.(css|js|txt)'); content; ELSE; -%]
f71a83ab 2<!DOCTYPE html>
3<html lang="en">
d3feefcf 4<head>
f71a83ab 5 <!-- git core binaries version [% git_version %] -->
c8a42dd5 6 <meta charset="utf-8">
906a2dd2 7 <meta name="generator" content="gitweb/[% version %] git/[% git_version %]">
38a4951e 8 <meta name="robots" content="index, nofollow">
a349e797 9 <title>[%# FIXME - MING %][%-
da8f4f82 10 title = BLOCK;
11 c.config.sitename;
87581f05 12 IF Repository; ' - ' _ Repository.name | html; END;
906a2dd2 13 IF c.action; ' / ' _ c.action; END;
14 IF filename; ' - ' _ filename | html; END;
a349e797 15 IF c.action && c.action == 'tree'; '/'; END;
da8f4f82 16 END;
17 title;
18 -%] (Gitalist)</title>
19 [% INCLUDE '_header_feeds.tt2' %]
6c36040d 20 <link rel="stylesheet" href="[% c.uri_for('/static/css/blueprint/screen.css') %]" type="text/css" media="screen, projection">
21 <link rel="stylesheet" href="[% c.uri_for('/static/css/blueprint/print.css') %]" type="text/css" media="print">
f71a83ab 22 <!--[if lt IE 8]>
6c36040d 23 <link rel="stylesheet" href="[% c.uri_for('/static/css/blueprint/ie.css') %]" type="text/css" media="screen, projection">
84f49778 24 <![endif]-->
c8a42dd5 25 <link rel="stylesheet" type="text/css" href="[% c.uri_for('/static/css/site.css') %]">
10938267 26 <link rel="stylesheet" type="text/css" href="[% c.uri_for('/static/css/960.css') %]">
7c24d86c 27 <link rel="shortcut icon" href="[% c.uri_for('/static/git-favicon.png') %]" type="image/png">
24701964 28</head>
29
30<body>
31
10938267 32<div id='the-container' class='container_12'>
33
34 <div id="page-header">
35 <div class="clear"></div>
36 <div class='grid_6'>
37 <a href="[% c.uri_for('/') %]">A Gitalist</a>
38 [%- IF Repository %]
39 / <a href="[% c.uri_for_action('/repository/summary', [Repository.name]) %]">[% Repository.name %]</a>
40 [%- END %]
906a2dd2 41 </div>
10938267 42 <div class='grid_6'>
43 <a title="git homepage" href="http://git-scm.org">
44 <img src="[% c.uri_for('/logo.png') %]" alt="git" class="logo">
45 </a>
46 [% IF Repository; INCLUDE 'nav/search.tt2'; END %]
47 </div>
48 </div>
1fd8159c 49
10938267 50 [% INCLUDE 'nav/actions.tt2' %]
d3feefcf 51
10938267 52 <div class="clear"></div>
53 <div id='body' class='grid_12'>
54 [% content %]
55 </div>
56
57 <div class="clear"></div>
58 <div id="page-footer">
59 <div class='grid_12'>
60 [%
61 IF Repository; Repository.description | html; END;
62 INCLUDE 'inc/footer_feeds.tt2';
63 %]
64 </div>
65 </div>
69421cb7 66
2cf1e781 67</div>
68
d3feefcf 69</body>
70</html>
c8a42dd5 71[%- END -%]