2016-10-30 01:02:14 +02:00
|
|
|
{% if site.comments.discourse.server %}
|
2016-11-23 02:29:35 +01:00
|
|
|
{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
|
2016-10-30 01:02:14 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
|
|
|
|
discourseEmbedUrl: '{{ canonical }}' };
|
|
|
|
(function () {
|
|
|
|
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
|
|
|
|
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
|
|
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
|
|
|
|
})();
|
|
|
|
</script>
|
2017-09-28 23:42:38 +02:00
|
|
|
<noscript>Please enable JavaScript to view the comments powered by <a href="https://www.discourse.org/">Discourse.</a></noscript>
|
2016-11-23 02:29:35 +01:00
|
|
|
{% endif %}
|