9 lines
342 B
HTML
9 lines
342 B
HTML
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>{{ .Site.Title }}</title>
|
||
|
{{- with resources.Get "sass/style.scss" }}
|
||
|
{{- $opts := dict "transpiler" "libsass" "targetPath" "css/media.css" }}
|
||
|
{{- with . | toCSS $opts }}
|
||
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
||
|
{{- end }}
|
||
|
{{- end }}
|