~jadedctrl/jam-xwx-moe

~jadedctrl/jam-xwx-moe/bloat-fe/instance/ŝablonoj/header.tmpl
 ..
0 {{with .Data}}
1 <!DOCTYPE html>
2 <html lang="eo">
3 <head>
4 <meta charset='utf-8'>
5 <link rel="icon" type="image/png" href="/static/favicon.png">
6 <meta content='width=device-width, initial-scale=1' name='viewport'>
7 {{if .Target}}
8 <base href="" target="{{.Target}}">
9 {{end}}
10 {{if .CSRFToken}}
11 <meta name="csrf_token" content="{{.CSRFToken}}">
12 {{end}}
13 {{if $.Ctx.AntiDopamineMode}}
14 <meta name="antidopamine_mode" content="{{$.Ctx.AntiDopamineMode}}">
15 {{end}}
16 {{if .RefreshInterval}}
17 <meta http-equiv="refresh" content="{{.RefreshInterval}}">
18 {{end}}
19 <title> {{if gt .Count 0}}({{.Count}}){{end}} {{.Title}} </title>
20 <link rel="stylesheet" href="/static/style.css">
21 {{if .CustomCSS}}
22 <link rel="stylesheet" href="{{.CustomCSS}}">
23 {{end}}
24 {{if $.Ctx.FluorideMode}}
25 <script src="/static/fluoride.js"></script>
26 {{end}}
27 {{if $.Ctx.UserCSS}}
28 <style>{{RawCSS $.Ctx.UserCSS}}</style>
29 {{end}}
30 </head>
31 <body {{if $.Ctx.DarkMode}}class="dark"{{end}}>
32 {{end}}