blog-site

git clone git://git.lin.moe/blog-site.git

 1<head>
 2  <meta charset="UTF-8">
 3  <meta http-equiv="X-UA-Compatible" content="IE=edge">
 4  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
 5  <meta name="author" content="Lindsay">
 6  <meta name="description" content="A static blog builded by hugo">
 7  
 8  <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧀</text></svg>">
 9
10  {{ $style := resources.Match "css/**.css" | resources.Concat "main.css" | minify | fingerprint  -}}
11  <link rel="stylesheet" href="{{$style.RelPermalink}}">
12  
13  <title>{{.Title}}</title>
14  {{ range .AlternativeOutputFormats -}}
15  {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
16  {{ end -}}
17  
18</head>