2023-11-07 00:46:28 -05:00
|
|
|
{{define "theme-server-status/header"}}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{.Conf.Language}}">
|
|
|
|
<head>
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/bootstrap-theme.min.css">
|
2023-12-07 08:58:42 -05:00
|
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/main.css?v20231207">
|
2023-11-07 00:46:28 -05:00
|
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/dark.css">
|
|
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/light.css">
|
2023-12-07 08:58:42 -05:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css">
|
2023-12-11 08:53:56 -05:00
|
|
|
<link rel="stylesheet" href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-y/font-logos/0.17/font-logos.min.css">
|
|
|
|
<link rel="stylesheet" href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-y/semantic-ui/2.4.1/semantic.min.css">
|
2023-12-07 08:58:42 -05:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.0.0/css/flag-icons.min.css">
|
2023-11-08 00:17:42 -05:00
|
|
|
<link rel="shortcut icon" type="image/png" href="/static/logo.svg?v20210804" />
|
2023-11-07 00:46:28 -05:00
|
|
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="/static/theme-server-status/js/html5shiv.js"></script>
|
|
|
|
<script src="/static/theme-server-status/js/respond.min.js"></script>
|
|
|
|
<![endif]-->
|
|
|
|
{{if ts .CustomCode}}
|
|
|
|
{{.CustomCode|safe}}
|
|
|
|
{{end}}
|
|
|
|
<script src="/static/theme-server-status/js/jquery.min.js"></script>
|
|
|
|
<script src="/static/theme-server-status/js/bootstrap.min.js"></script>
|
2023-12-11 08:53:56 -05:00
|
|
|
<script src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-y/vue/2.6.14/vue.min.js"></script>
|
2023-11-07 00:46:28 -05:00
|
|
|
<script src="/static/theme-server-status/js/mixin.js"></script>
|
2024-02-12 01:16:04 -05:00
|
|
|
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/echarts/5.3.0-rc.1/echarts.min.js"></script>
|
2023-11-07 00:46:28 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-02-12 01:16:04 -05:00
|
|
|
{{end}}
|