summaryrefslogtreecommitdiff
path: root/themes/blowfish/exampleSite/layouts/partials/home/custom.html
blob: aa13ffae946b1a801eda0292b4e06bd4c24848b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }}
<div id="background">
  {{ partial "partials/home/background.html" . }}
</div>
<div id="hero" style="display:none">
  {{ partial "partials/home/hero.html" . }}
</div>
<div id="profile" style="display:none">
  {{ partial "partials/home/profile.html" . }}
</div>
<div id="card" style="display:none">
  {{ partial "partials/home/card.html" . }}
</div>
<div id="page" style="display:none">
  {{ partial "partials/home/page.html" . }}
</div>
<section>
  {{ partial "recent-articles-demo.html" . }}
</section>
<script defer type="text/javascript" src="{{ $jsHome.RelPermalink }}" integrity="{{ $jsHome.Data.Integrity }}"></script>