mirror of https://github.com/jpanther/congo.git
14 lines
388 B
HTML
14 lines
388 B
HTML
{{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }}
|
|
<div id="page">
|
|
{{ partial "partials/home/page.html" . }}
|
|
</div>
|
|
<div id="profile" class="hidden h-full">
|
|
{{ partial "partials/home/profile.html" . }}
|
|
</div>
|
|
<script
|
|
defer
|
|
type="text/javascript"
|
|
src="{{ $jsHome.RelPermalink }}"
|
|
integrity="{{ $jsHome.Data.Integrity }}"
|
|
></script>
|