summaryrefslogtreecommitdiffstats
path: root/source/_includes
diff options
context:
space:
mode:
Diffstat (limited to 'source/_includes')
-rw-r--r--source/_includes/after_footer.html1
-rw-r--r--source/_includes/disqus.html21
2 files changed, 22 insertions, 0 deletions
diff --git a/source/_includes/after_footer.html b/source/_includes/after_footer.html
index 9e4e391..cc756a0 100644
--- a/source/_includes/after_footer.html
+++ b/source/_includes/after_footer.html
@@ -1 +1,2 @@
+{% include disqus.html %}
{% include custom/after_footer.html %} \ No newline at end of file
diff --git a/source/_includes/disqus.html b/source/_includes/disqus.html
new file mode 100644
index 0000000..eb30877
--- /dev/null
+++ b/source/_includes/disqus.html
@@ -0,0 +1,21 @@
+{% comment %} Load script if disquss comments are enabled and `page.comments` is either empty (index) or set to true {% endcomment %}
+{% if site.disqus_short_name and page.comments != false %}
+<script type="text/javascript">
+ var disqus_shortname = '{{ site.disqus_short_name }}';
+ {% if page.comments == true %}
+ {% comment %} `page.comments` can be only be set to true on pages/posts, so we embed the comments here. {% endcomment %}
+ // var disqus_developer = 1;
+ var disqus_identifier = '{{ site.url }}{{ page.url }}';
+ var disqus_url = '{{ site.url }}{{ page.url }}';
+ var disqus_script = 'embed.js';
+ {% else %}
+ {% comment %} As `page.comments` is empty, we must be on the index page. {% endcomment %}
+ var disqus_script = 'count.js';
+ {% endif %}
+ (function () {
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
+ dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
+ }());
+</script>
+{% endif %}