Skip to content

Commit

Permalink
Merge branch 'release/3.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed May 13, 2016
2 parents aceb6cd + 22a2323 commit d285f9d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion _data/ui-text.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
# --------------
# --------------
1 change: 1 addition & 0 deletions assets/_scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ body:hover .visually-hidden button {
.social-icons {
.fa {
color: #000;
display: initial;
}

.fa-behance,
Expand Down
4 changes: 2 additions & 2 deletions assets/css/main.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

{% 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 %}

0 comments on commit d285f9d

Please sign in to comment.