22 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
{{define "common/header"}}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="{{.Conf.Language}}">
 | 
						|
<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">
 | 
						|
    <meta content="telephone=no" name="format-detection">
 | 
						|
    <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">
 | 
						|
    <link rel="stylesheet" type="text/css" href="/static/semantic-ui-alerts.min.css">
 | 
						|
    <link rel="stylesheet" type="text/css" href="/static/main.css?v20240813">
 | 
						|
    <link rel="stylesheet" type="text/css" href="/static/darkmode.css?v20240813">
 | 
						|
    <script>
 | 
						|
        document.documentElement.setAttribute('nz-theme', window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')
 | 
						|
    </script>
 | 
						|
</head>
 | 
						|
{{if ts .CustomCodeDashboard}} {{.CustomCodeDashboard|safe}} {{end}}
 | 
						|
<body>
 | 
						|
{{end}} |