diff --git a/_data/ui-text.yml b/_data/ui-text.yml index 39ac0d54..32019dd0 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -12,6 +12,7 @@ en: &DEFAULT_EN tags_label : "Tags:" categories_label : "Categories:" date_label : "Last Updated:" + comments_label : "Leave a Comment" related_label : "You May Also Enjoy" follow_label : "Follow:" feed_label : "Feed" diff --git a/_includes/comments.html b/_includes/comments.html index a549d8e7..df699fc5 100644 --- a/_includes/comments.html +++ b/_includes/comments.html @@ -2,13 +2,13 @@ {% case site.comments.provider %} {% when "disqus" %} - {% include /comments-providers/disqus %} + {% include /comments-providers/disqus.html %} {% when "facebook" %} - {% include /comments-providers/facebook %} + {% include /comments-providers/facebook.html %} {% when "google-plus" %} - {% include /comments-providers/google-plus %} + {% include /comments-providers/google-plus.html %} {% when "custom" %} - {% include /comments-providers/custom %} + {% include /comments-providers/custom.html %} {% endcase %} {% endif %} \ No newline at end of file diff --git a/assets/scss/_page.scss b/assets/scss/_page.scss index 353e3b86..81690bbd 100644 --- a/assets/scss/_page.scss +++ b/assets/scss/_page.scss @@ -133,6 +133,20 @@ } +/* + Comments + ========================================================================== */ + +.page__comments-title { + font-size: 14px; + margin-top: 2rem; + margin-bottom: 10px; + padding-top: 2rem; + border-top: 1px solid $border-color; + text-transform: uppercase; +} + + /* Related ========================================================================== */