Fleshed out reflog action.
[catagits/Gitalist.git] / templates / default.tt2
CommitLineData
d64ea8a0 1[%- # git_header_html
2-%]
d3feefcf 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>
24701964 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>
04d1d917 13 [% IF baseurl %]
14 <base href="[% baseurl %]" />
15 [% END %]
16 <link rel="stylesheet" type="text/css" href="[% stylesheet %]"/>
17 [% FOR link IN links %]
18 <link rel="[% link.rel %]"
19 title="[% link.title %]"
20 href="[% link.href %]"
21 type="[% link.type %]"
22 />
23 [% END %]
24 [% IF favicon %]
25 <link rel="shortcut icon" href="[% favicon %]" type="image/png" />
26 [% END %]
24701964 27</head>
28
29<body>
30
31[% site_header %]
32
33<div class="page_header">
04d1d917 34 <a title="[% logo_label %]" href="[% logo_url %]"><img src="[% logo_img %]" alt="git" class="logo"/></a>
e66db0fb 35 <a href="[% home_link %]">[% home_link_str %]</a>
04d1d917 36 [%- IF project %]
37 / <a href="/git/gitweb.cgi?p=[% project %];a=summary">[% project %]</a>
38 [% IF action; " / " _ action; END;
194fa4ff 39 END %]
24701964 40</div>
d3feefcf 41
a57db1f0 42[% IF project AND have_search %]
43<div class="search">
04d1d917 44 <form method="get" action="/" enctype="application/x-www-form-urlencoded">
45 <input name="p" type="hidden" value="[% project %]" />
46 <input name="a" type="hidden" value="search" />
47 <input name="h" type="hidden" value="[% search_hash %]" />
48 <select name="st" >
49 <option value="commit">commit</option>
50 <option value="grep">grep</option>
51 <option value="author">author</option>
52 <option value="committer">committer</option>
53 <option value="pickaxe">pickaxe</option>
54 </select><sup><a href="/?p=[% project %];a=search_help">?</a></sup> search:
55 <input type="text" name="s" value="[% search_text %]"/>
56 <span title="Extended regular expression"><label><input type="checkbox" name="sr" value="1" />re</label></span>
57 </form>
a57db1f0 58</div>
59[% END %]
60
d64ea8a0 61[%- # / git_header_html
62-%]
63[%
64 IF page_nav;
65 INCLUDE "page_nav.tt2";
66 END;
86382b95 67
68 IF action;
295c9703 69 SET actmpl = action _ ".tt2";
70 INCLUDE $actmpl;
86382b95 71 ELSE;
72 # The output of gitweb.cgi is injected at this point.
73 content;
74 END;
d64ea8a0 75%]
d3feefcf 76
d64ea8a0 77[%- # git_footer_html
78-%]
69421cb7 79<div class="page_footer">
04d1d917 80[% IF project AND project_description %]
69421cb7 81 <div class="page_footer_text">[% project_description %]</div>
04d1d917 82[% END %]
83[% FOR feed IN feeds %]
84 <a class="[% feed.class %]" title="[% feed.title %]" href="[% feed.href %]">[% feed.name %]</a>
85[% END %]
69421cb7 86</div>
87
88[% site_footer %]
89
d3feefcf 90</body>
91</html>
d64ea8a0 92[%- # / git_footer_html
93-%]