aboutsummaryrefslogtreecommitdiff
path: root/templates/header.tmpl
blob: 8eb53f688295459e64cfc411862b8f914c8c605e (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
{{with .Data}}
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset='utf-8'>
	<link rel="icon" type="image/png" href="/static/favicon.png">
	<meta content='width=device-width, initial-scale=1' name='viewport'>
	{{if .Target}}
	<base href="" target="{{.Target}}">
	{{end}}
	{{if .CSRFToken}}
	<meta name="csrf_token" content="{{.CSRFToken}}">
	{{end}}
	{{if $.Ctx.AntiDopamineMode}}
	<meta name="antidopamine_mode" content="{{$.Ctx.AntiDopamineMode}}">
	{{end}}
	{{if .RefreshInterval}}
	<meta http-equiv="refresh" content="{{.RefreshInterval}}">
	{{end}}
	<title> {{if gt .Count 0}}({{.Count}}){{end}} {{.Title | html}} </title>
	<link rel="stylesheet" href="/static/style.css">
	{{if .CustomCSS}}
	<link rel="stylesheet" href="{{.CustomCSS}}">
	{{end}}
	{{if $.Ctx.FluorideMode}}
	<script src="/static/fluoride.js"></script>
	{{end}}
	{{if $.Ctx.UserCSS}}
	<style>{{$.Ctx.UserCSS}}</style>
	{{end}}
</head>
<body {{if $.Ctx.DarkMode}}class="dark"{{end}}>
{{end}}