Merge branch 'release/3.1.7'

This commit is contained in:
Michael Rose 2016-05-13 10:43:03 -04:00
commit d285f9d7bd
5 changed files with 17 additions and 5 deletions

View file

@ -1,3 +1,13 @@
## [3.1.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.7)
### Enhancement
- Add translation key for "Recent Posts" used in home page `index.html`. [#316](https://github.com/mmistakes/minimal-mistakes/pull/316)
### Maintenance
- Small fix to avoid underlying the whitespace between icons and related text when hovering.[#303](https://github.com/mmistakes/minimal-mistakes/pull/303)
## [3.1.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.6)
### Maintenance

View file

@ -26,10 +26,11 @@ en: &DEFAULT_EN
powered_by : "Powered by"
website_label : "Website"
email_label : "Email"
recent_posts : "Recent Posts"
en-US:
<<: *DEFAULT_EN
en-UK:
<<: *DEFAULT_EN
# Another locale
# --------------
# --------------

View file

@ -184,6 +184,7 @@ body:hover .visually-hidden button {
.social-icons {
.fa {
color: #000;
display: initial;
}
.fa-behance,

File diff suppressed because one or more lines are too long

View file

@ -5,10 +5,10 @@ author_profile: true
{% include base_path %}
<h3 class="archive__subtitle">Recent Posts</h3>
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts }}</h3>
{% for post in paginator.posts %}
{% include archive-single.html %}
{% endfor %}
{% include paginator.html %}
{% include paginator.html %}