Add title to comments section
- Style .page__comments-title - Add comments label text to data file - Add .html extension to comment provider _includes
This commit is contained in:
parent
f69b84df75
commit
9fecb03081
3 changed files with 19 additions and 4 deletions
|
@ -12,6 +12,7 @@ en: &DEFAULT_EN
|
||||||
tags_label : "Tags:"
|
tags_label : "Tags:"
|
||||||
categories_label : "Categories:"
|
categories_label : "Categories:"
|
||||||
date_label : "Last Updated:"
|
date_label : "Last Updated:"
|
||||||
|
comments_label : "Leave a Comment"
|
||||||
related_label : "You May Also Enjoy"
|
related_label : "You May Also Enjoy"
|
||||||
follow_label : "Follow:"
|
follow_label : "Follow:"
|
||||||
feed_label : "Feed"
|
feed_label : "Feed"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
{% case site.comments.provider %}
|
{% case site.comments.provider %}
|
||||||
{% when "disqus" %}
|
{% when "disqus" %}
|
||||||
{% include /comments-providers/disqus %}
|
{% include /comments-providers/disqus.html %}
|
||||||
{% when "facebook" %}
|
{% when "facebook" %}
|
||||||
{% include /comments-providers/facebook %}
|
{% include /comments-providers/facebook.html %}
|
||||||
{% when "google-plus" %}
|
{% when "google-plus" %}
|
||||||
{% include /comments-providers/google-plus %}
|
{% include /comments-providers/google-plus.html %}
|
||||||
{% when "custom" %}
|
{% when "custom" %}
|
||||||
{% include /comments-providers/custom %}
|
{% include /comments-providers/custom.html %}
|
||||||
{% endcase %}
|
{% endcase %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
|
@ -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
|
Related
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
Loading…
Reference in a new issue