-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
41 lines (41 loc) · 1.04 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{{!< default}}
{{>header}}
<main>
<div class="content-column">
<div class="post-list-content">
{{#is "tag"}}{{#tag}}
<div class="tag-title">
<h1>Posts tagged with #{{name}}</h1>
</div>
{{/tag}}{{/is}}
{{#foreach posts}}
<div class="post-excerpt">
<div class="preview">
<div class="post-excerpt-date">
{{date format="DD MMM YYYY"}}
</div>
{{#if image}}
<div style="background-image: url({{image}})" class="preview-image">
<a href="{{{url}}}">
<h1>{{title}}</h1>
</a>
</div>
{{/if}}
<div class="excerpt-content">
{{excerpt words="100"}}...
<div class="read-more">
<a href="{{{url}}}">Read more</a>
</div>
</div>
<div class="break-line"></div>
</div>
</div>
{{/foreach}}
{{#if pagination}}
{{pagination}}
{{/if}}
</div>
{{>sidebar}}
</div>
{{>footer}}
</main>