website/themes/nervproject/templates/comments.html

25 lines
1 KiB
HTML

{% if ISSO_PREFIX %}
<script data-isso="/isso"
data-isso-id="{{ article.url }}"
data-isso-css="false"
data-isso-lang="{{ ISSO_LANG }}"
data-isso-reply-to-self="{{ ISSO_REPLY_TO_SELF }}"
data-isso-require-author="{{ ISSO_REQUIRE_AUTHOR }}"
data-isso-require-email="{{ ISSO_REQUIRE_EMAIL }}"
data-isso-reply-notifications="{{ ISSO_REPLY_NOTIF }}"
data-isso-max-comments-top="{{ ISSO_MAX_COMMENTS_TOP }}"
data-isso-max-comments-nested="{{ ISSO_MAX_COMMENTS_NESTED }}"
data-isso-reveal-on-click="{{ ISSO_REVEAL_ON_CLICK }}"
data-isso-avatar="{{ ISSO_AVATAR }}"
data-isso-vote="{{ ISSO_VOTE }}"
data-isso-vote-levels="{{ ISSO_VOTE_LEVELS }}"
data-isso-feed="{{ ISSO_FEED }}"
src="{{ SITEURL }}/isso/js/embed.min.js"></script>
<section class="comments" id="comments">
<h2 class="panel">{{ _("Comments") }}</h2>
<section id="isso-thread"
data-isso-id="{{ article.url }}"
data-title="{{ article.title }}"
></section>
</section>
{% endif %}