Prepare for multiple comment systems
This commit is contained in:
parent
ebb3dc940c
commit
75176522e3
4 changed files with 12 additions and 10 deletions
|
@ -87,9 +87,11 @@ avatar: '/commons/avatar.jpg'
|
|||
# boolean type, the global switch for ToC in posts.
|
||||
toc: true
|
||||
|
||||
comments:
|
||||
active: # The global switch for posts comments, e.g., 'disqus'. Keep it empty means disable
|
||||
# The comment active options are as follows
|
||||
disqus:
|
||||
comments: false # boolean type, the global switch for posts comments.
|
||||
shortname: '' # Fill with your Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname
|
||||
shortname: # fill with the Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname
|
||||
|
||||
paginate: 10
|
||||
|
||||
|
|
4
_includes/comments.html
Normal file
4
_includes/comments.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<!-- The comments switcher -->
|
||||
{% if page.comments and site.comments.active %}
|
||||
{% include {{ site.comments.active | append: '.html' }} %}
|
||||
{% endif %}
|
|
@ -1,9 +1,6 @@
|
|||
<!--
|
||||
The Disqus lazy loading.
|
||||
-->
|
||||
|
||||
{% if site.disqus.comments and page.comments %}
|
||||
|
||||
<div id="disqus_thread" class="pt-2 pb-2">
|
||||
<p class="text-center text-muted small">
|
||||
Comments powered by <a href="https://disqus.com/">Disqus</a>.
|
||||
|
@ -11,6 +8,7 @@
|
|||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var disqus_config = function () {
|
||||
this.page.url = '{{ page.url | absolute_url }}';
|
||||
this.page.identifier = '{{ page.url }}';
|
||||
|
@ -22,7 +20,7 @@
|
|||
if(entries[0].isIntersecting) {
|
||||
(function () {
|
||||
var d = document, s = d.createElement('script');
|
||||
s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
|
||||
s.src = 'https://{{ site.comments.disqus.shortname }}.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
|
@ -54,5 +52,3 @@
|
|||
}
|
||||
|
||||
</script>
|
||||
|
||||
{% endif %}
|
||||
|
|
|
@ -5,7 +5,7 @@ pannel_includes:
|
|||
tail_includes:
|
||||
- related-posts
|
||||
- post-nav
|
||||
- disqus
|
||||
- comments
|
||||
---
|
||||
|
||||
{% include lang.html %}
|
||||
|
|
Loading…
Reference in a new issue