mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
9 lines
351 B
HTML
9 lines
351 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }}</title>
|
|
{{ $css := resources.Get "scss/main.scss" }}
|
|
{{ $css = $css | toCSS }}
|
|
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
|
|
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
|
</head>
|