-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
66 lines (62 loc) · 1.78 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
{{!< default }}
{{#post}}
<!-- content
================================================== -->
<section id="content-wrap" class="blog-single">
<div class="row">
<div class="col-twelve">
<article class="format-standard">
{{#if feature_image}}
<div class="content-media">
<div class="post-thumb">
<img src="{{ feature_image }}">
</div>
</div>
{{/if}}
<div class="primary-content blog-full-content">
<h1 class="page-title">{{ title }}</h1>
<ul class="entry-meta">
<li class="date">
{{ date format="DD MMMM YYYY" }}
</li>
<li class="cat">
{{tags}}
</li>
</ul>
{{content}}
<p class="tags">
<span>{{t "Tagged in :"}}</span>
{{ tags }}
</p>
{{#if @custom.show_author}}
{{> "author-info" }}
{{/if}}
</div> <!-- end entry-primary -->
{{#if @custom.show_navigation_section}}
{{> "next-previous"}}
{{/if}}
</article>
</div> <!-- end col-twelve -->
</div> <!-- end row -->
{{#if @custom.show_comment_box}}
<div class="comments-wrap">
<div style="width: 850px; margin: auto;" id="disqus_thread"></div>
</div> <!-- end comments-wrap -->
{{/if}}
</section> <!-- end content -->
{{/post}}
{{#contentFor "theme-footer"}}
<script>
var disqus_config = function () {
this.page.url = '{{url absolute=true}}';
this.page.identifier = '{{comment_id}}';
};
(function () { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://abstract10-theme.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{{/contentFor}}