www-from-model/layouts/_partials/home/custom.html
Michael Hanke 9b135ac09a
All checks were successful
Deploy on webserver / Build site and deploy on success (push) Successful in 39s
TMP Example site to have something to build while finishing the setup
2025-10-31 10:37:20 +01:00

13 lines
367 B
HTML

{{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }}
<div id="page">
{{ partial "home/page.html" . }}
</div>
<div id="profile" class="hidden h-full">
{{ partial "home/profile.html" . }}
</div>
<script
defer
type="text/javascript"
src="{{ $jsHome.Permalink }}"
integrity="{{ $jsHome.Data.Integrity }}"
></script>