8 lines
546 B
HTML
8 lines
546 B
HTML
{{- $options := (dict "targetPath" "css/styles.css" "outputStyle" "expanded" "enableSourceMap" "true") -}}
|
|
{{ $mainSassFile := "sass/main.sass" }}
|
|
{{- $styles := resources.Get $mainSassFile | resources.ExecuteAsTemplate $mainSassFile . | css.Sass $options | resources.Fingerprint "sha512" }}
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}">
|
|
|
|
<link href="/css/fontawesome.css" rel="stylesheet" />
|
|
<link href="/css/brands.css" rel="stylesheet" />
|
|
<link href="/css/solid.css" rel="stylesheet" /> |