From c6bf5f7c895287d2028f6024265913b59784a154 Mon Sep 17 00:00:00 2001 From: Karl Hallsby Date: Sun, 27 Sep 2020 17:45:13 -0500 Subject: Bring all of jekyll-text-theme _includes into site --- _includes/comments.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 _includes/comments.html (limited to '_includes/comments.html') diff --git a/_includes/comments.html b/_includes/comments.html new file mode 100644 index 0000000..8029395 --- /dev/null +++ b/_includes/comments.html @@ -0,0 +1,11 @@ +{%- if jekyll.environment != 'development' -%} + {%- if site.comments.provider == 'disqus' -%} + {%- include comments-providers/disqus.html -%} + {%- elsif site.comments.provider == 'gitalk' -%} + {%- include comments-providers/gitalk.html -%} + {%- elsif site.comments.provider == 'valine' -%} + {%- include comments-providers/valine.html -%} + {%- elsif site.comments.provider == 'custom' -%} + {%- include comments-providers/custom.html -%} + {%- endif -%} +{%- endif -%} -- cgit v1.2.3