nezha/resource/template/common/header.html

22 lines
1.1 KiB
HTML
Raw Normal View History

2019-12-08 03:59:58 -05:00
{{define "common/header"}}
<!DOCTYPE html>
2022-04-30 09:30:58 -04:00
<html lang="{{.Conf.Language}}">
2019-12-08 03:59:58 -05:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
2022-05-29 09:35:27 -04:00
<meta content="telephone=no" name="format-detection">
2019-12-08 03:59:58 -05:00
<title>{{.Title}}</title>
<link rel="shortcut icon" type="image/png" href="/static/logo.svg?v20210804" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/semantic-ui@2.4.0/dist/semantic.min.css">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/font-logos@0.17.0/assets/font-logos.css">
2019-12-08 03:59:58 -05:00
<link rel="stylesheet" type="text/css" href="/static/semantic-ui-alerts.min.css">
2024-08-13 11:50:55 -04:00
<link rel="stylesheet" type="text/css" href="/static/main.css?v20240813">
<link rel="stylesheet" type="text/css" href="/static/darkmode.css?v20240813">
2024-08-13 12:24:17 -04:00
<script>
document.documentElement.setAttribute('nz-theme', window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')
</script>
2019-12-08 03:59:58 -05:00
</head>
2024-08-13 12:24:17 -04:00
{{if ts .CustomCodeDashboard}} {{.CustomCodeDashboard|safe}} {{end}}
2019-12-08 03:59:58 -05:00
<body>
{{end}}