-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.html
40 lines (40 loc) · 1.55 KB
/
header.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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{if eq .TemplateName "legal" -}}
<meta name="robots" content="noindex, noarchive" />
{{- end}}
{{if hasprefix .TemplateName "blog" -}}
{{- range Blog_FeedFormats -}}
<link rel="alternate" href="{{.Path}}" {{.ContentType}} />
{{- end}}
<link rel="stylesheet" href="{{call $.StaticFileURL "tab-switcher.css"}}" />
<link rel="stylesheet" href="{{call $.StaticFileURL "player.css"}}" />
<link rel="stylesheet" href="{{call $.StaticFileURL "trackbar.css"}}" />
<script src="{{call $.StaticFileURL "tab-switcher.js"}}"></script>
<script src="{{call $.StaticFileURL "trackbar.js"}}"></script>
<script src="{{call $.StaticFileURL "player.js"}}"></script>
{{- end}}
<link rel="stylesheet" href="{{call $.StaticFileURL "main.css"}}" />
<script src="{{call $.StaticFileURL "main.js"}}"></script>
<title>ReC98</title>
</head>
<body>
<header>
<a href="/" class="logo">
<img src="{{call $.StaticFileURL "logo.png"}}" alt="Richard Stallman cosplaying as a shrine maiden" class="logo"/>
</a>
<div class="logo"></div>
<div><nav>
<a href="/faq">FAQ</a>
<a href="/fundlog">Crowdfunding log</a>
<a href="/blog">Progress blog</a>
<a href="/progress">Per-commit metrics</a>
<a href="https://github.com/nmlgc/ReC98">ReC98 repository</a>
<a href="https://github.com/nmlgc/rec98.nmlgc.net">Website repository</a>
<a href="https://twitter.com/ReC98Project">Twitter</a>
</nav></div>
</header>
<main id="{{.TemplateName}}">