28 lines
901 B
HTML
28 lines
901 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="shortcut icon" href="/favicon.ico"/>
|
|
<title>{{.title}}</title>
|
|
<link rel="stylesheet" href="/statics/css/style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
{{block "ext_css" .}}{{end}}
|
|
</head>
|
|
<body>
|
|
<div class="px-2 py-3 md:px-2 bg-black">
|
|
<a href="/"><span class="text-gray-300 text-xl font-light">winxg</span></a>
|
|
</div>
|
|
<div class="h-6 bg-white">
|
|
</div>
|
|
{{block "body" .}} {{end}}
|
|
<div class="container-lg h-30">
|
|
|
|
</div>
|
|
</body>
|
|
<script defer data-domain="winxg.com" src="https://stat.winxg.com/js/plausible.js"></script>
|
|
{{block "ext_js" .}}{{end}}
|
|
|
|
</html>
|