Add Discourse for comments
This commit is contained in:
parent
a43ec05a4d
commit
d300a9dc44
5 changed files with 27 additions and 3 deletions
|
@ -8,9 +8,26 @@ is_post: true
|
|||
{% include blog/post/article.html %}
|
||||
</article>
|
||||
|
||||
{% if site.disqus_short_name and page.comments == true %}
|
||||
<div id='post-comments'></div>
|
||||
|
||||
{% if site.disqus_short_name and post.date < site.disqus_end_date and page.comments == true %}
|
||||
<section id="disqus">
|
||||
<h3 class="indent title">Comments</h3>
|
||||
<div id="disqus_thread" aria-live="polite">{% include blog/post/disqus_thread.html %}</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if page.comments == true and post.date > site.disqus_end_date %}
|
||||
<div id='discourse-comments'></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
DiscourseEmbed = { discourseUrl: 'https://community.home-assistant.io/',
|
||||
discourseEmbedUrl: '{{ page.url | canonical_url }}' };
|
||||
|
||||
(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>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue