2021-02-25 21:23:58 +00:00
< head >
< meta name = "description" content = "{{ if .Params.summary }}{{ .Params.summary }}{{ else if .Site.Params.Description }}{{ .Site.Params.Description }}{{ else }}Hardcoded description; the author should update :){{ end }}" / >
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" / >
< meta http-equiv = "x-ua-compatible" content = "ie=edge" >
< title > {{ block "title" . }}{{ .Site.Title }}{{ end }}< / title >
2021-04-07 13:37:08 +00:00
{{- $favIcon := .Site.Params.favIcon }}
< link rel = "icon" type = "image/png" sizes = "16x16" href = "{{ if $favIcon.small }}{{ $favIcon.small }}{{ else }}/favIcon16x16.png{{ end }}" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "{{ if $favIcon.big }}{{ $favIcon.big }}{{ else }}/favIcon32x32.png{{ end }}" >
2021-02-25 21:23:58 +00:00
{{ $template := resources.Get "scss/index.scss" }}
{{ if $template }}
{{ $index := $template | resources.ExecuteAsTemplate "css/index.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}
< link rel = "stylesheet" type = "text/css" href = "{{ $index.Permalink }}" >
{{ end }}
<!-- <link rel="stylesheet" type="text/css" href="/css/index.css"> -->
{{ $template := resources.Get "scss/totop.scss" }}
{{ if $template }}
{{ $totop := $template | resources.ExecuteAsTemplate "css/totop.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}
< link rel = "stylesheet" type = "text/css" href = "{{ $totop.Permalink }}" >
{{ end }}
<!-- <link rel="stylesheet" type="text/css" href="/css/totop.css"> -->
2022-03-19 22:54:55 +00:00
{{ $template := resources.Get "scss/slider.scss" }}
{{ if $template }}
{{ $slider := $template | resources.ExecuteAsTemplate "css/slider.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}
< link rel = "stylesheet" type = "text/css" href = "{{ $slider.Permalink }}" >
{{ end }}
2021-02-25 21:23:58 +00:00
< link rel = "stylesheet" type = "text/css" href = "/Font-Awesome/css/all.min.css" >
< / head >