diff options
-rw-r--r-- | zurb-F5-basic/templates/article.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/zurb-F5-basic/templates/article.html b/zurb-F5-basic/templates/article.html index 04ecaa2..f80fceb 100644 --- a/zurb-F5-basic/templates/article.html +++ b/zurb-F5-basic/templates/article.html @@ -12,9 +12,11 @@ {{ article.content }} {% include 'article_infos_bottom.html' %} - {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} - <h4>Comments</h4> - {% include 'disqus_script.html' %} + {% if STATIC_COMMENTS %} + <section id="comments" class="body"> + <h4>Comments!</h4> + {{ article.metadata.static_comments }} + </section> {% endif %} </article> {% endblock %}
\ No newline at end of file |