main
1{{- /*gotype: mokhan.ca/xlgmokha/gitmal/pkg/templates.LayoutParams*/ -}}
2<!DOCTYPE html>
3<html lang="en">
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <title>{{.Title}}</title>
8 <link rel="icon" href="https://src.mokhan.ca/assets/favicon.svg" type="image/svg+xml">
9 <link rel="stylesheet" href="https://src.mokhan.ca/assets/shared.css">
10 <link rel="stylesheet" href="https://src.mokhan.ca/assets/project.css">
11{{- if .NeedsMarkdownCSS}}
12 <link rel="stylesheet" href="https://src.mokhan.ca/assets/markdown.css">
13{{- end}}
14{{- if .NeedsSyntaxCSS}}
15 <link rel="stylesheet" href="https://src.mokhan.ca/assets/syntax.css">
16{{- end}}
17{{- template "head" .}}
18</head>
19<body>
20{{- template "svg" .}}
21<div class="menu">
22 <div class="menu-content">
23 <a href="{{.RootHref}}index.html" class="project-name">{{.Name}}</a>
24 <div class="menu-item{{if eq .Selected "code"}} selected{{end}}">
25 <a href="{{.RootHref}}blob/{{.CurrentRefDir}}/index.html">
26 <svg aria-hidden="true" width="16" height="16"><use xlink:href="#code"></use></svg>
27 Code
28 </a>
29 </div>
30 <div class="menu-item{{if eq .Selected "branches"}} selected{{end}}">
31 <a href="{{.RootHref}}branches.html">
32 <svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#branch"></use></svg>
33 Branches
34 </a>
35 </div>
36 <div class="menu-item{{if eq .Selected "tags"}} selected{{end}}">
37 <a href="{{.RootHref}}tags.html">
38 <svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#tag"></use></svg>
39 Tags
40 </a>
41 </div>
42 <div class="menu-item{{if eq .Selected "commits"}} selected{{end}}">
43 <a href="{{.RootHref}}commits/{{.CurrentRefDir}}/index.html">
44 <svg aria-hidden="true" focusable="false" width="16" height="16"><use xlink:href="#commit"></use></svg>
45 Commits
46 </a>
47 </div>
48 </div>
49</div>
50<main>
51 <div class="main-content">
52{{- template "body" .}}
53 </div>
54</main>
55<footer class="site-footer">
56 <div class="footer-links">
57 <a href="https://www.mokhan.ca">~/</a>
58 <span class="footer-sep">·</span>
59 <a href="https://src.mokhan.ca">/usr/src</a>
60 <span class="footer-sep">·</span>
61 <a href="https://www.mokhan.ca/resume.html">Resume</a>
62 <span class="footer-sep">·</span>
63 <a href="https://www.mokhan.ca/ls/">/var/log</a>
64 </div>
65 <div class="footer-social">
66 <a href="https://github.com/xlgmokha">GitHub</a>
67 <span class="footer-sep">·</span>
68 <a href="https://gitlab.com/mokhax">GitLab</a>
69 <span class="footer-sep">·</span>
70 <a href="https://www.linkedin.com/in/xlgmokha">LinkedIn</a>
71 <span class="footer-sep">·</span>
72 <a href="https://www.speakerdeck.com/xlgmokha/">Speaker Deck</a>
73 </div>
74 <div class="footer-copy">© 2004-{{.Year}} mo khan</div>
75</footer>
76</body>
77</html>