Integration of the comment system

This commit is contained in:
Valentin Popov 2018-01-13 15:38:01 +00:00
parent 4adacbf728
commit 9c26bbb254
2 changed files with 21 additions and 3 deletions

View File

@ -23,6 +23,23 @@ layout: default
</div> </div>
{% if page.comments %}
<div id="disqus_thread"></div>
<script type="text/javascript" defer>
var disqus_config = function () {
this.page.url = '{{ page.url | absolute_url }}';
this.page.identifier = '{{ page.url | absolute_url }}';
};
(function() {
var d = document, s = d.createElement('script');
s.src = 'https://valentineus-link.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
{% endif %}
<div class="pagination"> <div class="pagination">
{% if page.next.url %} {% if page.next.url %}
<a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">&#8592;</a> <a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">&#8592;</a>

View File

@ -1,5 +1,6 @@
--- ---
layout: post layout: post
comments: true
title: "Example Content" title: "Example Content"
author: "Valentin Popov" author: "Valentin Popov"
--- ---