krata/_includes/disqus.html

26 lines
692 B
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
<!--
The Disqus lazy loading.
2021-01-23 08:07:18 +01:00
Powered by: <https://github.com/osvaldasvalutis/disqusLoader.js>
2019-09-30 14:38:41 +02:00
-->
2020-07-29 22:58:05 +02:00
<div id="disqus" class="pt-2 pb-2">
2021-01-23 08:07:18 +01:00
<p class="text-center text-muted pb-5">
Loading comments from <a href="https://disqus.com/">Disqus</a> ...
2020-07-29 22:58:05 +02:00
</p>
2019-09-30 14:38:41 +02:00
</div>
2021-01-18 16:27:43 +01:00
<script src="{{ '/assets/js/lib/jquery.disqusloader.min.js' | relative_url }}"></script>
2019-09-30 14:38:41 +02:00
<script>
2021-01-23 08:07:18 +01:00
const options = {
2019-09-30 14:38:41 +02:00
scriptUrl: '//{{ site.disqus.shortname }}.disqus.com/embed.js',
disqusConfig: function() {
2021-01-23 08:07:18 +01:00
this.page.title = '{{ page.title }}';
2021-01-18 16:27:43 +01:00
this.page.url = '{{ page.url | absolute_url }}';
2019-09-30 14:38:41 +02:00
this.page.identifier = '{{ page.url }}';
}
};
$.disqusLoader('#disqus', options);
2021-01-18 16:27:43 +01:00
</script>