11 lines
486 B
HTML
11 lines
486 B
HTML
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>{{ .Site.Title }}</title>
|
||
|
|
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap" rel="stylesheet">
|
||
|
|
|
||
|
|
{{ $style := resources.Get "css/style.css" | minify }}
|
||
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
|