-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathbaseof.html
More file actions
45 lines (40 loc) · 1.8 KB
/
baseof.html
File metadata and controls
45 lines (40 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html lang="en">
<head>
<title>{{with .Title }}{{.}} | {{end}}{{ .Site.Title }}</title>
<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 name="description" content="{{ with .GetPage " hero" }}{{ .Content | chomp }}{{ end }}" />
<meta name="keywords" content="" />
<link rel="preload" href="/fonts/Supreme-Variable.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet" />
{{- $styles := resources.Match "css/*.css" | resources.Concat "main.css" }}
{{- $styles = $styles | css.PostCSS (dict "inlineImports" true) }}
{{- if hugo.IsProduction }}
{{- $styles = $styles | minify }}
{{- end }}
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
<link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
<link rel="icon" href="/favicon/favicon.ico">
<script async defer src="https://buttons.github.io/buttons.js"></script>
{{ template "_internal/twitter_cards.html" . }}
{{ template "_internal/opengraph.html" . }}
{{ if hugo.IsProduction -}}
{{ template "_internal/google_analytics.html" . -}}
{{ end -}}
</head>
<body>
<div class="h-screen w-screen">
{{ partial "nav" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer" . }}
</div>
</body>
</html>