feat(comments): Adding comments Disqus

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-12-07 01:25:52 +04:00
parent 6900263c52
commit 1cead691ca
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

16
_includes/disqus.html Normal file
View File

@ -0,0 +1,16 @@
<div id="disqus_thread"></div>
<script defer type="text/javascript">
var disqus_config = function () {
this.page.identifier = '{{ page.id | strip_newlines | strip_html | strip | normalize_whitespace | slugify }}';
this.page.title = '{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}';
this.page.url = '{{ page.url | absolute_url | uri_escape }}';
};
(function () {
var d = document,
s = d.createElement('script');
s.src = '//valentineus-link.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>