hugo-battheme/layouts/partials/head.html

9 lines
285 B
HTML
Raw Normal View History

2022-04-08 22:27:21 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-04-09 08:16:52 +00:00
<title>{{ .Title }}</title>
{{ $css := resources.Get "scss/main.scss" }}
{{ $css = $css | toCSS }}
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
2022-04-08 22:27:21 +00:00
</head>