-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.hbs
37 lines (28 loc) · 1.11 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
{{!< default }}
{{! List all posts }}
<main class="content" role="main">
<div id="htumblr-widget"></div>
{{#foreach posts}}
<article class="{{post_class}} {{#if @first}}first-article{{/if}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<span class="post-meta"><i class="fa fa-time oesam-icon"></i><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{{tags prefix="<i class=\"fa fa-tags oesam-icon\"></i>"}}}
</span>
</header>
<section class="js-featured">
{{!Auto get video or image}}
{{content words="0"}}
</section>
<section class="post-excerpt">
<p>{{excerpt characters="200"}}…</p>
</section>
<div class="post-weather"></div>
<div class="emoemo">
<span class="post-emoticon"></span>
</div>
<a class="button readmore" href="{{url}}"><i class="fa fa-thumbs-up oesam-icon"></i>Read more</a>
</article>
{{/foreach}}
{{!! Pagination }}
{{pagination}}
</main>