-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
27 lines (24 loc) · 1.08 KB
/
index.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
<meta name="google-site-verification" content="CZuJBVbmjQdYaKUXQ6pDcDQ1Y9dH13s1oeZmN_AZpu4" />
{{> "site-nav"}}
<script type="module" src="{{asset "js/InfiniteScroll.js"}}"></script>
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
{{!-- The main content area --}}
<main id="site-main" class="site-main outer" role="main">
<div class="index inner">
{{> "cako-search-feed"}}
<div id="cako-post-feed-outer">
{{!--{{> "featured"}}--}}
<div id="cako-post-feed">
{{#foreach posts}}
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
{{> "post-card"}}
{{/foreach}}
</div>
<div id="loading-posts">Loading posts...</div>
<section class="copyright"><a href="https://davidcako.com">{{@site.title}}</a> © {{date format="YYYY"}}</section>
</div>
</div>
</main>