-
Notifications
You must be signed in to change notification settings - Fork 26
/
post.hbs
executable file
·116 lines (97 loc) · 3.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{{!< default}}
<main id="post-page" class="page-wrap" role="main">
{{! Everything inside the #post tags pulls data from the post }}
<article class="{{post_class}}">
{{#post}}
{{#contentFor "metaTags"}}
<meta property="article:author" content="{{author.name}}">
{{/contentFor}}
<div>
<header class="post-header">
{{#if image}}
<img src="{{image}}" alt="{{{title}}}" />
{{/if}}
<h2 class="post-title">
<a href="{{url}}"><span>{{{title}}}</span></a>
</h2>
</header>
<section class="post-content">
{{content}}
</section>
<footer class="post-footer">
<section class="share">
<h4>Share this post</h4>
<a class="icon-twitter" href="http://twitter.com/share?text={{encode title}}&url={{url absolute="true"}}"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a>
<a class="icon-fb" href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a>
<a class="icon-gplus" href="https://plus.google.com/share?url={{url absolute="true"}}"
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a>
</section>
<section class="author">
{{#if author.image}}
<a href="{{author.website}}" class="post-author-avatar">
<img src="{{author.image}}" alt="{{author.name}}">
</a>
{{/if}}
<h3>{{author.name}}</h3>
<p>{{author.bio}}</p>
</section>
</footer>
<section class="post-comments">
<div id="disqus_thread"></div>
</section>
</div>
<aside class="post-meta">
<time datetime="{{date format='YYYY-MM-DD'}}">
{{date format="MMM DD"}}
<span>{{date format="YYYY"}}</span>
</time>
<dl>
<dt class="item-author">by</dt>
<dd>{{author}}</dd>
{{#if tags}}
<dt class="item-tags">tagged as:</dt>
<dd>
<ul>
{{#foreach tags}}
<li><a href="{{url}}">{{name}}</a>{{#if @last}} {{else}}, {{/if}}</li>
{{/foreach}}
</ul>
</dd>
{{/if}}
</dl>
</aside>
<nav class="pagination">
<div>
{{#prev_post}}
<a class="older-posts" href="{{url}}" title="{{title}}">← Previous post</a>
{{/prev_post}}
{{#next_post}}
<a class="newer-posts" href="{{url}}" title="{{title}}">Next post →</a>
{{/next_post}}
</div>
</nav>
{{/post}}
</article>
</main>
<script type="text/javascript">
{{> config}}
{{#post}}
var disqus_identifier = '{{id}}';
{{/post}}
if(typeof DISQUS !== 'object') {
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
}
</script>