-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.hbs
38 lines (38 loc) · 962 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
29
30
31
32
33
34
35
36
37
38
{{!< default}}
{{> header}}
<main role="main">
{{#foreach posts}}
<article role="article" itemscope itemtype="http://schema.org/Article" class="hentry">
<header class="entry-header">
<h1 class="entry-title" itemprop="headline">
<a href="{{{url}}}" rel="bookmark">
{{title}}
</a>
</h1>
<div class="entry-meta">
<span class="date">
<time class="entry-date" datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished">
{{date format='dddd DD MMM YYYY'}}
</time>
</span>
<span class="categories-links">
{{#if tags}}
Tags: {{tags separator=" | "}}
{{/if}}
</span>
</div><!-- .entry-meta -->
</header>
<div class="entry-content" itemprop="articleBody">
{{excerpt characters="80"}}
</div>
</article>
{{/foreach}}
{{#if pagination}}
<nav class="navigation paging-navigation">
<div class="nav-links">
{{{pagination}}}
</div>
</nav>
{{/if}}
</main>
{{> footer}}