2019-12-08 16:59:58 +08:00
|
|
|
{{define "common/header"}}
|
|
|
|
<!DOCTYPE html>
|
2022-04-30 21:30:58 +08:00
|
|
|
<html lang="{{.Conf.Language}}">
|
2019-12-08 16:59:58 +08: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 21:35:27 +08:00
|
|
|
<meta content="telephone=no" name="format-detection">
|
2019-12-08 16:59:58 +08:00
|
|
|
<title>{{.Title}}</title>
|
2022-05-05 20:55:23 +08:00
|
|
|
<link rel="stylesheet" type="text/css"
|
2022-06-24 20:25:20 +08:00
|
|
|
href="https://cdn.staticfile.org/semantic-ui/2.4.1/semantic.min.css">
|
|
|
|
<link href="https://cdn.staticfile.org/font-logos/0.17/font-logos.min.css" type="text/css"
|
2022-05-05 20:55:23 +08:00
|
|
|
rel="stylesheet" />
|
2019-12-08 16:59:58 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/semantic-ui-alerts.min.css">
|
2022-04-23 14:51:10 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/main.css?v2022042314">
|
2021-08-04 13:35:41 +08:00
|
|
|
<link rel="shortcut icon" type="image/png" href="/static/logo.svg?v20210804" />
|
2019-12-08 16:59:58 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-05-05 20:55:23 +08:00
|
|
|
{{end}}
|