mirror of
https://github.com/adulau/sillon-fictionnel.git
synced 2024-11-07 12:06:37 +00:00
15 lines
705 B
HTML
15 lines
705 B
HTML
<!-- Load Shared SCSS -->
|
|
{{- $sharedSCSS := resources.Get "scss/styles.scss" -}}
|
|
{{- $sharedSCSS := $sharedSCSS | resources.ToCSS (dict "outputStyle" "compressed" "includePaths" (slice "assets")) -}}
|
|
<style type="text/css" media="all">{{ $sharedSCSS.Content | safeCSS }}</style>
|
|
|
|
<!-- Load Shared JS -->
|
|
{{- $sharedJS := resources.Get "js/index.js" -}}
|
|
{{- $sharedJS := $sharedJS | js.Build (dict "minify" "true") -}}
|
|
<script>{{- $sharedJS.Content | safeJS -}}</script>
|
|
|
|
<!-- Mermaid -->
|
|
{{ if .Page.Store.Get "hasMermaid" }}
|
|
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
|
<script defer> mermaid.initialize({ startOnLoad: true, theme: "dark" }); </script>
|
|
{{ end }}
|