blowfish/exampleSite/layouts/partials/home/custom.html

15 lines
566 B
HTML
Raw Normal View History

{{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }}
2022-10-11 17:40:31 -05:00
<div id="hero" class="">
{{ partial "partials/home/hero.html" . }}
</div>
<div id="profile" class="hidden h-full">
{{ partial "partials/home/profile.html" . }}
</div>
2022-10-11 17:40:31 -05:00
<div id="card" class="hidden h-full">
{{ partial "partials/home/card.html" . }}
</div>
<div id="page" class="hidden h-full">
{{ partial "partials/home/page.html" . }}
</div>
<script defer type="text/javascript" src="{{ $jsHome.RelPermalink }}" integrity="{{ $jsHome.Data.Integrity }}"></script>