comments 527 B

123456789101112131415161718
  1. {% if site.JB.comments.provider and page.comments != false %}
  2. {% case site.JB.comments.provider %}
  3. {% when "disqus" %}
  4. {% include JB/comments-providers/disqus %}
  5. {% when "livefyre" %}
  6. {% include JB/comments-providers/livefyre %}
  7. {% when "intensedebate" %}
  8. {% include JB/comments-providers/intensedebate %}
  9. {% when "facebook" %}
  10. {% include JB/comments-providers/facebook %}
  11. {% when "duoshuo" %}
  12. {% include JB/comments-providers/duoshuo %}
  13. {% when "custom" %}
  14. {% include custom/comments %}
  15. {% endcase %}
  16. {% endif %}