mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-13 20:22:32 +00:00
24 lines
951 B
HTML
24 lines
951 B
HTML
<script src="https://kit.fontawesome.com/7353d7e426.js" crossorigin="anonymous"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
|
|
|
{{ if .Page.Store.Get "hasMermaid" }}
|
|
<script type="module">
|
|
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.esm.min.mjs';
|
|
mermaid.initialize({ startOnLoad: true });
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ if .Page.Store.Get "hasCarousel" }}
|
|
{{ with resources.Get "js/bulma-carousel.min.js" }}
|
|
<script src="{{ .RelPermalink }}"></script>
|
|
{{ end }}
|
|
<script>
|
|
bulmaCarousel.attach('.carousel', { pagination: false });
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ $theme := resources.Get "js/theme.js" }}
|
|
{{ $site := resources.Get "js/site.js" }}
|
|
{{ $js := slice $site $theme | resources.Concat "js/bundle.js" | resources.Minify }}
|
|
{{ $secureJS := $js | resources.Fingerprint "sha512" }}
|
|
<script src="{{ $secureJS.RelPermalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script> |