Added gitweb.cgi copyright info. Thanks to chrisa for pointing that out!
[catagits/Gitalist.git] / Gitalist / templates / default.tt2
1 [%- # git_header_html
2 -%]
3 <?xml version="1.0" encoding="utf-8"?>
4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
6 <!-- git web interface version [% version %], (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
7 <!-- git core binaries version [% git_version %] -->
8 <head>
9   <meta http-equiv="content-type" content="[% content_type %]; charset=utf-8"/>
10   <meta name="generator" content="gitweb/[% version %] git/[% git_version %][% mod_perl_version %]"/>
11   <meta name="robots" content="index, nofollow"/>
12   <title>[% title %] (Gitalist)</title>
13   [% baseurl %]
14   [% stylesheets.join("\n") %]
15   [% IF project;
16     rss_link;
17     rss_link_no_merges;
18     atom_link;
19     atom_link_no_merges;
20   ELSE;
21     projects_list;
22     projects_feed;
23   END %]
24   [% favicon %]
25 </head>
26
27 <body>
28
29 [% site_header %]
30
31 <div class="page_header">
32   [% logo %]
33   [% home_link %] / [%
34   IF project;
35     summary;
36     IF action;  " / " _ action; END;
37   END %]
38 </div>
39
40 [% IF project AND have_search %]
41 <div class="search">
42   [% search_form %]
43 </div>
44 [% END %]
45
46 [%- # / git_header_html
47 -%]
48 [%
49   IF page_nav;
50     INCLUDE "page_nav.tt2";
51   END;
52 %]
53 [%
54 # The output of gitweb.cgi is injected at this point.
55 content %]
56
57 [%- # git_footer_html
58 -%]
59 <div class="page_footer">
60 [%
61 IF project;
62   IF project_description
63 %]
64   <div class="page_footer_text">[% project_description %]</div>
65 [%
66   END;
67   rss_feed;
68   atom_feed;
69 ELSE;
70   opml_feed _ " " _ index_feed;
71 END %]
72 </div>
73
74 [% site_footer %]
75
76 </body>
77 </html>
78 [%- # / git_footer_html
79 -%]