Added tag page
[editorial.git] / post.hbs
index a0452715a1191eedb97f1c03e1c9c38ac6ff30c4..7ab3c1847aa52fea6842aa5c5ae70985f58f4000 100644 (file)
--- a/post.hbs
+++ b/post.hbs
@@ -7,8 +7,9 @@ into the {body} of the default.hbs template --}}
 <section>
 
     <header class="main content">
-        <span class="date">{{date format="MMMM D, YYYY"}}</span>
+        <span class="date">{{date format="D MMMM YYYY"}} {{tags separator=" , " prefix=" ; tagged in: "}}</span>
         <h1>{{title}}</h1>
+
         {{#if custom_excerpt}}
             <p class="content">{{custom_excerpt}}</p>
         {{/if}}
@@ -54,11 +55,29 @@ into the {body} of the default.hbs template --}}
 
     </footer>
 
-    {{!--
     <section class="post-full-comments">
-        If you want to embed comments, this is a good place to do it!
+        {{!-- If you want to embed comments, this is a good place to do it! --}}
+        <div id="disqus_thread"></div>
+        <script>
+
+            /**
+            *  RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
+            *  LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
+            
+            var disqus_config = function () {
+            this.page.url = '{{url absolute="true"}}';     // PAGE_URL;  // Replace PAGE_URL with your page's canonical URL variable
+            this.page.identifier = 'ghost-{{comment_id}}'; // PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
+            };
+            
+            (function() { // DON'T EDIT BELOW THIS LINE
+            var d = document, s = d.createElement('script');
+            s.src = 'https://worknjae.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>
     </section>
-    --}}
 
 </section>
 {{/post}}