14 lines
377 B
Text
14 lines
377 B
Text
|
{% if site.comments.provider and page.comments %}
|
||
|
|
||
|
{% case site.comments.provider %}
|
||
|
{% when "disqus" %}
|
||
|
{% include /comments-providers/disqus %}
|
||
|
{% when "facebook" %}
|
||
|
{% include /comments-providers/facebook %}
|
||
|
{% when "google-plus" %}
|
||
|
{% include /comments-providers/google-plus %}
|
||
|
{% when "custom" %}
|
||
|
{% include /comments-providers/custom %}
|
||
|
{% endcase %}
|
||
|
|
||
|
{% endif %}
|