-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.hbs
27 lines (25 loc) · 837 Bytes
/
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
{{!< default}}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">
<a href="{{url}}">{{{title}}}</a>
</h1>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time>
{{#has tag="gallery"}}<i class="header-icon icon-image"></i>{{/has}}
<span class="tags">{{tags}}</span>
</section>
</header>
<a class="read-more" href="{{url}}">
{{^has tag="gallery"}}
<section class="post-excerpt">
<p>{{excerpt words="30"}}...</p>
</section>
{{/has}}
</a>
</article>
{{/foreach}}
</div>
{{! Previous/next page links - displayed on every page }}
{{pagination}}