blob: 5745a5949bcaae54ec33a5e439e6ecfa626ed333 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{{- /*gotype: mokhan.ca/xlgmokha/gitmal/pkg/templates.LayoutParams*/ -}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="stylesheet" href="{{.RootHref}}css/layout.css">
{{- if .NeedsMarkdownCSS}}
<link rel="stylesheet" href="{{.RootHref}}css/markdown.css">
{{- end}}
{{- if .NeedsSyntaxCSS}}
<link rel="stylesheet" href="{{.RootHref}}css/syntax.css">
{{- end}}
{{- template "head" .}}
</head>
<body>
{{- template "svg" .}}
<div class="menu">
<div class="menu-content">
<a href="{{.RootHref}}index.html" class="project-name">{{.Name}}</a>
<div class="menu-item{{if eq .Selected "code"}} selected{{end}}">
<a href="{{.RootHref}}blob/{{.CurrentRefDir}}/index.html">
<svg aria-hidden="true" width="16" height="16"><use xlink:href="#code"></use></svg>
Code
</a>
</div>
<div class="menu-item{{if eq .Selected "branches"}} selected{{end}}">
<a href="{{.RootHref}}branches.html">
<svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#branch"></use></svg>
Branches
</a>
</div>
<div class="menu-item{{if eq .Selected "tags"}} selected{{end}}">
<a href="{{.RootHref}}tags.html">
<svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#tag"></use></svg>
Tags
</a>
</div>
<div class="menu-item{{if eq .Selected "commits"}} selected{{end}}">
<a href="{{.RootHref}}commits/{{.CurrentRefDir}}/index.html">
<svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#commit"></use></svg>
Commits
</a>
</div>
</div>
</div>
<main>
<div class="main-content">
{{- template "body" .}}
</div>
</main>
<footer></footer>
</body>
</html>
|