17 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			660 B
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
{{define "common/header"}}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="zh-CN">
 | 
						|
 | 
						|
<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">
 | 
						|
    <title>{{.Title}}</title>
 | 
						|
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.1/dist/semantic.min.css">
 | 
						|
    <link rel="stylesheet" type="text/css" href="/static/semantic-ui-alerts.min.css">
 | 
						|
    <link rel="stylesheet" type="text/css" href="/static/main.css?v202102051040">
 | 
						|
    <link rel="shortcut icon" type="image/png" href="/static/logo.png?v20210320" />
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    {{end}} |