-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.hbs
33 lines (28 loc) · 945 Bytes
/
home.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
28
29
30
31
32
33
{{!-- home.hbs --}}
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!-- showcase --}}
{{> showcase}}
{{!-- BRANCH test --}}
{{!-- main --}}
{{#get "posts" include="tags,authors" [email protected]_per_page order="published_at desc"}}
<main class="section pt-0">
<div class="columns">
<div class="column is-hidden-touch is-1-desktop is-1-widescreen is-2-fullhd"></div>
<div class="column is-12-tablet is-10-desktop is-10-widescreen is-8-fullhd">
{{#foreach posts}}
{{!-- post_item: for index & home cards --}}
{{> list_card}}
{{/foreach}}
</div>
<div class="column is-hidden-touch"></div>
</div>
</main>
{{!-- pagination --}}
<section class="section is-padding-top-05">
<div class="container">
{{pagination}}
</div>
</section>
{{/get}}