-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhome.hbs
32 lines (24 loc) · 876 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
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{> header}}
{{!-- Everything inside the #post tags pulls data from the post --}}
{{#page}}
<main class="main_minimal" role="main">
<article class="article__wrapper" role="article">
<header>
<h1 class="post__title">{{title}}</h1>
{{!-- <time class="date" datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY'}}</time> --}}
</header>
<section class="post__content-wrapper">
<div class="post__content">
{{^has tag="#noFeature"}}
<img src="{{feature_image}}" class="kg-image post__feature-image" />
{{/has}}
{{content}}
</div>
</section>
</article>
</main>
{{/page}}
{{> footer}}