changed from disqus to isso

This commit is contained in:
Marvin Steadfast 2014-02-03 13:47:15 +01:00
parent 3a6924c852
commit 29755fe4fa
3 changed files with 14 additions and 2 deletions

View File

@ -2,7 +2,7 @@
from __future__ import unicode_literals
AUTHOR = 'Marvin Steadfast'
SITENAME = "xsteadfastx is trying to code"
SITENAME = 'xsteadfastx is trying to code'
SITEURL = 'http://code.xsteadfastx.org'
TIMEZONE = "Europe/Berlin"
@ -10,7 +10,8 @@ TIMEZONE = "Europe/Berlin"
RELATIVE_URLS = True
GITHUB_URL = 'http://github.com/xsteadfastx/'
DISQUS_SITENAME = "xsteadfastxistryingtocode"
#DISQUS_SITENAME = "xsteadfastxistryingtocode"
ISSO_URL = 'http://comments.xsteadfastx.org'
PDF_GENERATOR = False
REVERSE_CATEGORY_ORDER = True
LOCALE = "C"

View File

@ -16,6 +16,7 @@
{{ article.content }}
</div><!-- /.entry-content -->
{% include 'twitter.html' %}
{% include 'isso.html' %}
{% if DISQUS_SITENAME %}
<div class="comments">

View File

@ -0,0 +1,10 @@
{% if ISSO_URL %}
<script data-isso="{{ ISSO_URL }}"
data-isso-css="true"
data-isso-lang="en"
data-isso-reply-to-self="false"
src="{{ ISSO_URL }}/js/embed.min.js">
</script>
<section id="isso-thread"></section>
{% endif %}