forked from samuelhwong/slimpost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
44 lines (37 loc) · 1.28 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
{{!< default}}
<div class="wrapper">
<header class="header">
<div class="logo"{{#if @blog.cover}} style="background-image: url({{@blog.cover}});"{{/if}}>
<h1>
<a href="{{@blog.url}}">{{@blog.title}}</a>
</h1>
<div class="blog-description">
<div class="through-line">{{@blog.description}}</div>
</div>
</div>
</header>
<section class="articles">
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>
</header>
<section class="post-excerpt">
<p>{{excerpt}}…</p>
</section>
</article>
{{/foreach}}
{{pagination}}
</section>
<footer class="footer">
<section class="social-links">
<a class="icon-feed" href="{{@blog.url}}/rss/" target="_blank"></a>
<a class="icon-twitter" href="http://twitter.com/" target="_blank"></a>
<a class="icon-facebook" href="http://facebook.com/" target="_blank"></a>
</section>
</footer>
</div>
<aside class="poweredby">
<a class="icon-ghost" href="http://ghost.org" title="Proudly published with Ghost" target="_blank"></a>
</aside>