mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
13 lines
548 B
HTML
13 lines
548 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }}@{{ .Site.Title }}</title>
|
|
{{ $css := resources.Get "scss/main.scss" }}
|
|
{{ $css = $css | toCSS }}
|
|
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
|
|
{{ range .AlternativeOutputFormats -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
|
</head>
|