2020-10-14 01:00:50 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>{{ $.Site.Title }}</title>
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
|
|
>
|
2020-11-12 21:37:35 +01:00
|
|
|
{{ $scss:= resources.Get "css/style.scss" }}
|
|
|
|
{{ $style := $scss | resources.ToCSS }}
|
2020-10-14 01:00:50 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ $style.Permalink }}" />
|
|
|
|
{{ $fontstyle := resources.Get "css/fonts.css" }}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ $fontstyle.Permalink }}" />
|
|
|
|
</head>
|