mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
17 lines
667 B
HTML
17 lines
667 B
HTML
{{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }}
|
|
<div id="background" class="">
|
|
{{ partial "partials/home/background.html" . }}
|
|
</div>
|
|
<div id="hero" class="hidden h-full">
|
|
{{ partial "partials/home/hero.html" . }}
|
|
</div>
|
|
<div id="profile" class="hidden h-full">
|
|
{{ partial "partials/home/profile.html" . }}
|
|
</div>
|
|
<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>
|