10 lines
462 B
HTML
10 lines
462 B
HTML
|
<head>
|
||
|
<!-- <link rel='stylesheet' type='text/css' href='/style.css'> -->
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="robots" content="index, follow">
|
||
|
<meta charset="utf-8">
|
||
|
<link rel="stylesheet" href="/styles.css">
|
||
|
{{ $css := resources.Get "css/compiled/output.css" }}
|
||
|
{{ $style := $css | resources.Minify }}
|
||
|
<link type="text/css" rel="stylesheet" href="{{ $style.RelPermalink }}" />
|
||
|
</head>
|