-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.hbs
28 lines (22 loc) · 919 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
28
{{!< default}}
<main id="main-content" class="content" role="main">
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<span class="post-meta"><time
datetime="{{date published_at timeago="true"}}">{{date published_at timeago="true"}}</time> {{#if tags}}
on {{tags}}{{/if}}</span>
<h2 class="post-title"><a href="{{url}}" title="{{title}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt}}… <a href="{{url}}" title="{{title}}">Read more →</a></p>
</section>
</article>
{{/foreach}}
{{! {{pagination}}
</main>
<ul id="related-posts-container" class="hidden">
{{#foreach posts}}
<li><a href="{{url}}" title="{{title}}">{{title}} →</a></li>
{{/foreach}}
</ul>