13 lines
717 B
HTML
13 lines
717 B
HTML
|
{{ define "cssincludes" }}
|
||
|
{{ $options := dict "targetPath" "default.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||
|
{{ $style := resources.Get "/css/custom/nodes/voc-speaker.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||
|
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "jsincludes" }}
|
||
|
{{ $externals := slice "htm" "preact" "luxon" }}
|
||
|
{{ $buildOptions := dict "targetPath" "voc-speaker.js" "externals" $externals }}
|
||
|
{{ $nodejs := resources.Get "/js/custom/nodes/voc-speaker.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||
|
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||
|
{{ end }}
|