-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.hbs
More file actions
58 lines (37 loc) · 1022 Bytes
/
index.hbs
File metadata and controls
58 lines (37 loc) · 1022 Bytes
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{{!< default}}
{{> header}}
<main class="main-content_att" role="main">
<div class="wrap_att article-list_att">
{{#foreach posts}}
<article class="article_att" role="article" itemscope itemtype="http://schema.org/Article">
<header class="articleheader_att">
<h1 class="article-title_att" itemprop="headline">
<a href="{{{url}}}" rel="bookmark">
{{title}}
</a>
</h1>
<div class="article-meta_att">
<time class="date_att" datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished">
{{date format='dddd DD MMM YYYY'}}
</time>
{{#if tags}}
|
<span class="article-tags_att">
{{tags separator=", "}}
</span>
{{/if}}
</div>
</header>
<div class="article-excerpt_att" itemprop="articleBody">
{{excerpt}} ...
</div>
</article>
{{/foreach}}
{{#if pagination}}
<div class="pagination_att">
{{{pagination}}}
</div>
{{/if}}
</div>
</main>
{{> footer}}