-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathheaderbar.html
32 lines (30 loc) · 1.32 KB
/
headerbar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link rel="stylesheet" type="text/css" href="{{ page.prefix }}cola.css" />
<link rel="icon" type="image/png" href="{{ page.prefix }}images/favicon.png" />
<link rel="alternate" type="application/atom+xml" title="git-cola news feed"
href="{{ site.cola_github }}/commits/main.atom" />
</head>
<body>
<header class="headerbar">
<div class="headerbar-logo-container">
<a class="headerbar-logo-link" href="{{ page.prefix }}index.html">
<img class="headerbar-logo" src="{{ page.prefix }}images/git-cola-logo.png" alt="git-cola logo" />
</a>
<span class="headerbar-text">The highly caffeinated Git GUI</span>
</div>
<nav class="headerbar-nav">
<a href="downloads.html">Download</a>
<a href="share/doc/git-cola/hotkeys.html">Keyboard Shortcuts</a>
<a href="https://git-cola.readthedocs.io/en/latest/">Documentation</a>
<a href="screenshots.html">Screenshots</a>
<a href="https://github.com/git-cola/git-cola">Source</a>
<a href="about.html">About</a>
</nav>
</header>
{{ content }}
</body>
</html>