aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-pt2021/layouts/partials/head.html
blob: 409f6ee1433b780cc14a8a43635a1df670f87865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<head>
  <meta charset='utf-8'/>
  <title>
    {{- block "title" . -}}
      {{- .Page.Title -}}
    {{- end -}}
  </title>

  {{- $options := (dict "targetPath" "style.css" "outputStyle" "compressed" "enableSourceMap" true) -}}
  {{- $style := resources.Get "bulma-0.9.3/bulma.sass" | resources.ToCSS $options | resources.Fingerprint -}}
  <link rel='stylesheet' type='text/css' href='{{ $style.Permalink }}' integrity='{{ $style.Data.Integrity }}'/>
</head>