-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.hbs
45 lines (40 loc) · 1.12 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{{!< default}}
{{#contentFor "bigTitle"}}
<a href="/">
<h1>{{@blog.title}}</h1>
</a>
{{/contentFor}}
<section id="about">
<p>{{{@blog.description}}}</p>
<p></p>
</section>
<section id="tags">
<span class="h2">Tags</span>
<div class="tagcloud"></div>
</section>
<section id="writing">
<span class="h1">
<a href="/archives">Writing</a>
</span>
<ul class="post-list">
{{#foreach posts}}
<li class="post-item">
<div class="meta">
<time datetime="{{date format="MMM DD, YYYY"}}" itemprop="datePublished">{{date format="MMM DD, YYYY"}}</time>
</div>
<span>
<a class="post-item-list" href="{{url}}">{{title}}</a>
</span>
<span>
<div class="article-tag">
<i class="fa fa-tag"></i>
{{#foreach tags}}
<a class="tag-link" href="{{url}}">{{name}}</a>{{#unless @last}}, {{/unless}}
{{/foreach}}
</div>
</span>
</li>
{{/foreach}}
</ul>
{{pagination}}
</section>