2020-07-10 11:25:08 -04:00
|
|
|
{{ $fontawesome := "font-awesome/css/all.min.css" | absURL }}
|
|
|
|
<link rel="stylesheet" href="{{ $fontawesome }}">
|
|
|
|
|
2020-07-09 17:38:57 -04:00
|
|
|
{{ $picnic := "picnic-css/picnic.min.css" | absURL }}
|
|
|
|
<link rel="stylesheet" href="{{ $picnic }}">
|
2019-08-18 11:35:40 -04:00
|
|
|
|
2020-07-10 16:06:24 -04:00
|
|
|
{{ $emoji := "emoji-css/emoji.css" | absURL }}
|
|
|
|
<link rel="stylesheet" href="{{ $emoji }}">
|
|
|
|
|
2019-08-18 11:35:40 -04:00
|
|
|
<!-- convert main sass to css and add it to the html -->
|
|
|
|
{{ $sass := resources.Get "sass/main.sass" }}
|
|
|
|
{{ $cssOpts := (dict "targetPath" "css/main.css") }}
|
|
|
|
{{ $style := $sass | toCSS $cssOpts | minify}}
|
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|