2024-09-02 04:03:04 +00:00
|
|
|
{{ hugo.Generator }}
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="referrer" content="no-referrer" />
|
|
|
|
|
2025-01-04 07:32:18 +00:00
|
|
|
{{ $site := resources.Get "scss/main.scss" | css.Sass }}
|
|
|
|
{{ $themes := resources.Get "templates/theme.scss" | resources.ExecuteAsTemplate "css/themes.css" . | css.Sass }}
|
2024-09-02 04:03:04 +00:00
|
|
|
|
|
|
|
{{ $stylesheets := slice | append $site $themes | resources.Concat "css/main.css" }}
|
|
|
|
<link rel="stylesheet" href="{{ $stylesheets.RelPermalink }}" />
|
|
|
|
<title>{{ .Site.Title }}</title>
|