17 lines
480 B
HTML
17 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Minify }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="light dark">
|
|
<title>{{ .Page.Title }}</title>
|
|
</head>
|
|
<body>
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|