This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
post.hbs
executable file
·58 lines (57 loc) · 1.48 KB
/
post.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
46
47
48
49
50
51
52
53
54
55
56
57
58
{{!< default}}
{{! post template}}
{{#post}}
<article id="post" class="Container-Small">
<header class="Container-">
{{#if image}}
<div class="image">
<img src="{{image}}"/>
</div>
{{/if}}
<h1>{{title}}</h1>
<hr/>
</header>
<section class="body">
{{content}}
</section>
<footer>
<section class="author">
{{#author}}
<h2>by <a href="{{url}}">{{name}}</a></h2>
{{/author}}
{{#if tags}}
<p class="tags">for {{tags separator=" & "}}</p>
{{/if}}
</section>
<section class="social">
<h2>Share</h2>
<p>Share on <a href="https://twitter.com/share?text={{encode title}}&url={{url absolute="true"}}">Twitter</a>, <a href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}">facebook</a>.</p>
</section>
</footer>
</article>
<section id="readnext" class="Container-Tiny">
<header class="wrapper">
<h3>Suggested</h3>
</header>
{{#next_post}}
<article class="left">
<header>
<a href="{{url}}"><h1>{{title}}</h1></a>
</header>
<section class="excerpt">
<p>{{excerpt words="15"}}...<a href="{{url}}" class="readmore">read more</a></p>
</section>
</article>
{{/next_post}}
{{#prev_post}}
<article class="left">
<header>
<a href="{{url}}"><h1>{{title}}</h1></a>
</header>
<section class="excerpt">
<p>{{excerpt words="15"}}...<a href="{{url}}" class="readmore">read more</a></p>
</section>
</article>
{{/prev_post}}
</section>
{{/post}}