diff --git a/_config.yml b/_config.yml index aa3a19e..0a075a3 100644 --- a/_config.yml +++ b/_config.yml @@ -88,10 +88,14 @@ avatar: '/commons/avatar.jpg' toc: true comments: - active: # The global switch for posts comments, e.g., 'disqus'. Keep it empty means disable - # The comment active options are as follows + active: # The global switch for posts comments, e.g., 'disqus'. Keep it empty means disable + # The active options are as follows: disqus: - shortname: # fill with the Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname + shortname: # fill with the Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname + # utterances settings › https://utteranc.es/ + utterances: + repo: # / + issue_term: # < url | pathname | title | ...> paginate: 10 @@ -113,7 +117,6 @@ collections: output: true sort_by: order - defaults: - scope: diff --git a/_includes/comments.html b/_includes/comments.html index 3935aca..39e521f 100644 --- a/_includes/comments.html +++ b/_includes/comments.html @@ -1,4 +1,5 @@ {% if page.comments and site.comments.active %} - {% include {{ site.comments.active | append: '.html' }} %} + {% capture path %}comments/{{ site.comments.active }}.html{% endcapture %} + {% include {{ path }} %} {% endif %} diff --git a/_includes/disqus.html b/_includes/comments/disqus.html similarity index 100% rename from _includes/disqus.html rename to _includes/comments/disqus.html diff --git a/_includes/comments/utterances.html b/_includes/comments/utterances.html new file mode 100644 index 0000000..5fa5760 --- /dev/null +++ b/_includes/comments/utterances.html @@ -0,0 +1,51 @@ + + + + diff --git a/_sass/layout/post.scss b/_sass/layout/post.scss index b9e5acd..804b8c6 100644 --- a/_sass/layout/post.scss +++ b/_sass/layout/post.scss @@ -233,9 +233,12 @@ nav[data-toggle=toc] { #tail-wrapper { min-height: 2rem; + > div:last-of-type { + margin-bottom: 2rem; + } + #disqus_thread { min-height: 7.5rem; - margin-bottom: 2rem; } }