forked from GavickPro/Portfolio-Free-Ghost-Theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
post.hbs
executable file
·116 lines (100 loc) · 4.71 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 role="main">
<div class="main__wrapper">
{{#if @blog.navigation}}
{{navigation}}
{{/if}}
{{! 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 class="post__wrapper--subpage">
{{#if image}}
<div class="post__media">
<img src="{{image}}" alt="{{{title}}}" />
</div>
{{/if}}
<header class="post__header--subpage">
<h2 class="post__title post__title--subpage">
<a href="{{url}}" class="post__link post__title_link">{{{title}}}</a>
</h2>
<time datetime="{{date format='YYYY-MM-DD'}}" class="post__date">
{{date format="MMM, DD, YYYY"}}
</time>
</header>
<section class="post__content">
{{content}}
</section>
<footer class="post__footer">
<div class="social social--share">
<span class="social__label">Share: </span>
<a class="social__icon social__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="social__icon--hidden">Twitter</span>
</a>
<a class="social__icon social__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="social__icon--hidden">Facebook</span>
</a>
<a class="social__icon social__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="social__icon--hidden">Google+</span>
</a>
</div>
{{#if tags}}
<ul class="post__meta post__meta--subpage">
{{#foreach tags}}
<li class="post__tag"><a href="{{url}}" class="post__link post__tag_link">{{name}}</a>{{#if @last}} {{else}}, {{/if}}</li>
{{/foreach}}
</ul>
{{/if}}
</footer>
</div>
<aside class="author">
{{#if author.image}}
<a href="{{author.website}}" class="author__avatar">
<img src="{{author.image}}" alt="{{author.name}}">
</a>
{{/if}}
<h3 class="author__name">{{author}} {{#author}}<a class="author__subscribe" href="{{url}}rss">{{/author}}Subscribe {{author.name}}'s posts RSS</a></h3>
<p class="author__bio">
{{author.bio}}
</p>
</aside>
<div class="post__comments">
<div id="disqus_thread"></div>
</div>
{{#prev_post}}
<div class="post__navigation post__navigation--prev">
<a class="post__navigation_link post__navigation_link--prev" href="{{url}}" title="{{title}}">
<i class="post__navigation_icon post__navigation_icon--prev">‹</i>
</a>
</div>
{{/prev_post}}
{{#next_post}}
<div class="post__navigation post__navigation--next">
<a class="post__navigation_link post__navigation_link--next" href="{{url}}" title="{{title}}">
<i class="post__navigation_icon post__navigation_icon--next">›</i>
</a>
</div>
{{/next_post}}
{{/post}}
</article>
</div>
</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>