mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
10 lines
495 B
HTML
10 lines
495 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 }}">
|
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/index.xml" title="{{.Title}}@{{.Site.Title}}">
|
|
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
|
</head>
|