summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/comments-disqus.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/new_theme/layouts/partials/comments-disqus.html')
-rw-r--r--themes/new_theme/layouts/partials/comments-disqus.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/new_theme/layouts/partials/comments-disqus.html b/themes/new_theme/layouts/partials/comments-disqus.html
new file mode 100644
index 0000000..7af75f0
--- /dev/null
+++ b/themes/new_theme/layouts/partials/comments-disqus.html
@@ -0,0 +1,31 @@
+{{ if (not .Params.disable_comments) }}
+<div id="disqus_thread"></div>
+
+<script src="/js/jquery.js" type="text/javascript"></script>
+
+<script type="text/javascript">
+
+var disqus_config = function () {
+ this.page.url = '{{ .Permalink }}';
+ this.page.identifier = '{{ .Site.Params.DisqusShortname }}_{{ .UniqueID }}';
+};
+
+(function() {
+ // Don't ever inject Disqus on localhost--it creates unwanted
+ // discussions from 'localhost:1313' on your Disqus account...
+ if (window.location.hostname == "localhost")
+ return;
+
+ var d = document, s = d.createElement('script');
+
+ s.src = 'https://wwwandreasbaumanncc.disqus.com/embed.js';
+
+ s.setAttribute('data-timestamp', +new Date());
+ (d.head || d.body).appendChild(s);
+
+alert( disqus_config );
+})();
+</script>
+<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
+<a href="http://disqus.com/" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
+{{ end }}