-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.hbs
26 lines (26 loc) · 1.03 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
{{!< default}}
{{! The main content area on the homepage }}
<main class="content" role="main">
{{#if posts}}
{{!! Each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p align="left">{{excerpt}}… <a class="read-more" href="{{url}}">»</a></p>
<span class="post-meta" style="font-size:14px; text-align:left;">
By {{#if author.website}}<a href="{{author.website}}">{{/if}}<i>{{author}}</i>{{#if author.website}}</a>{{/if}} on <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>.
</span>
<p style="font-size:12px">{{tags prefix="Tags: "}}<p>
<hr>
</section>
</article>
{{/foreach}}
{{!! After all the posts, we have the previous/next pagination links.}}
{{pagination}}
{{else}}
No posts.
{{/if}}
</main>