##// END OF EJS Templates
help: link back to the help topics page from a specific topic page
Augie Fackler -
r16712:846ed7a7 default
parent child Browse files
Show More
@@ -1,44 +1,44 b''
1 1 {header}
2 2 <title>Help: {topic}</title>
3 3 <link rel="alternate" type="application/atom+xml"
4 4 href="{url}atom-tags" title="Atom feed for {repo|escape}" />
5 5 <link rel="alternate" type="application/rss+xml"
6 6 href="{url}rss-tags" title="RSS feed for {repo|escape}" />
7 7 </head>
8 8 <body>
9 9
10 10 <div class="container">
11 11 <div class="menu">
12 12 <div class="logo">
13 13 <a href="{logourl}">
14 14 <img src="{staticurl}{logoimg}" alt="mercurial" /></a>
15 15 </div>
16 16 <ul>
17 17 <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li>
18 18 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li>
19 19 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
20 20 <li><a href="{url}bookmarks{sessionvars%urlparameter}">bookmarks</a></li>
21 21 <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li>
22 22 </ul>
23 23 <ul>
24 <li class="active">help</li>
24 <li class="active"><a href="{url}help{sessionvars%urlparameter}">help</a></li>
25 25 </ul>
26 26 </div>
27 27
28 28 <div class="main">
29 29 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2>
30 30 <h3>Help: {topic}</h3>
31 31
32 32 <form class="search" action="{url}log">
33 33 {sessionvars%hiddenformentry}
34 34 <p><input name="rev" id="search1" type="text" size="30" /></p>
35 35 <div id="hint">find changesets by author, revision,
36 36 files, or words in the commit message</div>
37 37 </form>
38 38 <pre>
39 39 {doc|escape}
40 40 </pre>
41 41 </div>
42 42 </div>
43 43
44 44 {footer}
General Comments 0
You need to be logged in to leave comments. Login now