19 lines
834 B
HTML
19 lines
834 B
HTML
{{ define "cssincludes" }}
|
|
{{ $options := dict "targetPath" "talk-info-hall1.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
|
{{ $style := resources.Get "/css/custom/nodes/talk-info-hall1.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" "talk-info-hall1.js" "externals" $externals }}
|
|
{{ $nodejs := resources.Get "/js/custom/nodes/talk-info-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
|
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<main id="main">
|
|
<!-- Dynamic content inserted here -->
|
|
</main>
|
|
{{ end }}
|