Added excerpt to index view
[ghost-theme-willow.git] / post.hbs
1 {{!< default}}
2 {{#post}}
3 <div class="c-post-view {{post_class}}">
4 <div class="c-page-title">
5 <h1 class="c-page-title__heading">
6 {{title}}
7 </h1>
8
9 {{> "post-meta"}}
10 </div>
11
12 <div class="c-post-view__content">
13 {{content}}
14 </div>
15
16 <div id="disqus_thread"></div>
17 <script>
18
19 /**
20 * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
21 * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
22
23 var disqus_config = function () {
24 this.page.url = '{{url absolute="true"}}'; // PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
25 this.page.identifier = 'ghost-{{comment_id}}'; // PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
26 };
27
28 (function() { // DON'T EDIT BELOW THIS LINE
29 var d = document, s = d.createElement('script');
30 s.src = 'https://worknjae.disqus.com/embed.js';
31 s.setAttribute('data-timestamp', +new Date());
32 (d.head || d.body).appendChild(s);
33 })();
34 </script>
35 <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
36
37 <div class="c-post-view__footer">
38 {{> "post-share"}}
39 {{> "prev-next"}}
40 <!--{{> "comments"}}-->
41 </div>
42
43 </div>
44 {{/post}}