Merge branch 'release/3.1.7'
This commit is contained in:
commit
d285f9d7bd
5 changed files with 17 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -26,6 +26,7 @@ en: &DEFAULT_EN
|
|||
powered_by : "Powered by"
|
||||
website_label : "Website"
|
||||
email_label : "Email"
|
||||
recent_posts : "Recent Posts"
|
||||
en-US:
|
||||
<<: *DEFAULT_EN
|
||||
en-UK:
|
||||
|
|
|
@ -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
|
@ -5,7 +5,7 @@ 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 %}
|
||||
|
|
Loading…
Reference in a new issue