mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
27 lines
699 B
Cheetah
27 lines
699 B
Cheetah
{{with .Data}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<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 .AutoRefresh}}
|
|
<meta http-equiv="refresh" content="30">
|
|
{{end}}
|
|
<title> {{if gt .Count 0}}({{.Count}}){{end}} {{.Title}} </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}}
|
|
</head>
|
|
<body {{if $.Ctx.DarkMode}}class="dark"{{end}}>
|
|
{{end}}
|