-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.hbs
More file actions
30 lines (26 loc) · 1.33 KB
/
index.hbs
File metadata and controls
30 lines (26 loc) · 1.33 KB
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
{{!< default}}
<main>
{{!-- {{> "components/header" heading=@custom.homepage_title description=@site.description action="email"}} --}}
{{> "components/header" heading="The Bridge Test" description=@site.description action="email"}}
{{> "components/latest-post" }}
{{#get "posts" filter="featured:true" include="tags" limit="6"}}
{{#if posts}}
<section class="featured-stories">
{{> "components/section-header" id="featured-stories-slider-controller" heading=(t "Featured stories") isSlider=true }}
{{> "components/slider" id="featured-stories-slider" }}
</section>
{{/if}}
{{/get}}
{{!-- <section class="latest-stories">
{{> "components/section-header" id="latest-stories-header" heading=(t "Latest stories") text=(concat pagination.total " " (t "posts")) }}
{{> "components/grid" id="latest-stories-grid" }}
</section> --}}
{{#get "tags" limit="all"}}
{{#if tags}}
<section class="browse-by-tags">
{{> "components/section-header" id="browse-by-tags-slider-controller" heading=(t "Browse by tags") isSlider=true hideBottomBorder=true }}
{{> "components/slider" id="browse-by-tags-slider" tagsSlider=true }}
</section>
{{/if}}
{{/get}}
</main>