diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 1bb28592f877..000000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-language: ruby
-cache: bundler
-gemfile: docs/Gemfile
-script:
- - bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
-branches:
- only:
- # Change this to gh-pages if you're deploying using the gh-pages branch
- - master
-rvm:
- - 2.4
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 18d1d307ea31..61aae5157087 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,43 @@
### Enhancements
+- Updated Traditional Chinese translation (#5250)
+- Add built-in support for jekyll-gfm-admonitions (#5312)
+
+## [4.27.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.3)
+
+### Bug Fixes
+
+- Add explicit CSS rules for `.sr-only` following Font Awesome 7's changes. (#5296)
+
+## [4.27.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.2)
+
+### Enhancements
+
+- Hide `.page__footer-follow` if there are no links nor atom feed. (#5279)
+- Add HTML escaping for some titles, labels and metada that was missing. (#5276)
+- Add optional `footer.since` for copyright time range. (#5275)
+
+### Bug Fixes
+
+- Add `escape_once` to gallery title and alt text.
+
+## [4.27.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.1)
+
+### Enhancements
+
+- Add a "Share on Bluesky" button (#5179)
+- Add preset variables for modern font stack (#5033)
+- Update X share button to match brand color (#5245)
+
+### Bug Fixes
+
+- Fix wrong icon and color for X share button.
+
+## [4.27.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.0)
+
+### Enhancements
+
- Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886)
- Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890)
- Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
@@ -13,6 +50,8 @@
- Use `documents-collection.html` partial in `home` layout.
- Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003)
- Add provider and comments info to `single.html` layout for non-production. (#5068)
+- Tweak contrast skin $primary-color to adhere to WCAG guidelines. (#5126)
+- Update social share buttons to reflect Twitter rebranding to X (#5210)
### Bug Fixes
@@ -23,6 +62,8 @@
- Fix bad <figure> HTML if "alt" contains quotes.
- Fix extra newline generated in `_includes/post_pagination.html`.
- Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042)
+- Fix typo in "Configuration" (#5106)
+- bundle exec jekyll serve will fail if more than once (#5193)
### Documentation & Maintenance
diff --git a/README.md b/README.md
index 3b66aeab73fe..9298269786af 100644
--- a/README.md
+++ b/README.md
@@ -121,7 +121,7 @@ To install:
bundle
```
-4. Add `remote_theme: "mmistakes/minimal-mistakes@4.26.2"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
+4. Add `remote_theme: "mmistakes/minimal-mistakes@4.27.3"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
diff --git a/_includes/copyright.js b/_includes/copyright.js
index b70c0374f557..647651203203 100644
--- a/_includes/copyright.js
+++ b/_includes/copyright.js
@@ -1,6 +1,6 @@
/*!
- * Minimal Mistakes Jekyll Theme 4.26.2 by Michael Rose
- * Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
+ * Minimal Mistakes Jekyll Theme 4.27.3 by Michael Rose
+ * Copyright 2013-2025 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT license
* https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
*/
diff --git a/_includes/footer.html b/_includes/footer.html
index 2b2b7ee1e479..43ca551e4e5b 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,3 +1,7 @@
+{% unless site.atom_feed.hide %}
+ {% assign show_atom = true %}
+{% endunless %}
+{% if site.footer.links or show_atom %}
+{% endif %}
-
+
diff --git a/_includes/gallery b/_includes/gallery
index 71a9e1e1b3d1..0b5892f0a4ee 100644
--- a/_includes/gallery
+++ b/_includes/gallery
@@ -20,13 +20,13 @@
{% for img in gallery %}
{% if img.url %}
+ {% if img.title %}title="{{ img.title | escape_once }}"{% endif %}>
+ alt="{% if img.alt %}{{ img.alt | escape_once }}{% endif %}">
{% else %}
+ alt="{% if img.alt %}{{ img.alt | escape_once }}{% endif %}">
{% endif %}
{% endfor %}
{% if include.caption %}
diff --git a/_includes/masthead.html b/_includes/masthead.html
index f919fb77937c..c97b2aa34d0d 100644
--- a/_includes/masthead.html
+++ b/_includes/masthead.html
@@ -8,8 +8,8 @@
{% endunless %}
- {{ site.masthead_title | default: site.title }}
- {% if site.subtitle %}{{ site.subtitle }}{% endif %}
+ {{ site.masthead_title | default: site.title | escape_once | strip }}
+ {% if site.subtitle %}{{ site.subtitle | escape_once | strip }}{% endif %}
{%- for link in site.data.navigation.main -%}
diff --git a/_includes/seo.html b/_includes/seo.html
index e500c6f3edfa..1e04a26174fa 100644
--- a/_includes/seo.html
+++ b/_includes/seo.html
@@ -39,15 +39,15 @@
{% if author.name %}
-
+
{% if og_type == "article" %}
-
+
{% endif %}
{% endif %}
-
+
diff --git a/_includes/social-share.html b/_includes/social-share.html
index 847baa32d5da..8a1423638bfb 100644
--- a/_includes/social-share.html
+++ b/_includes/social-share.html
@@ -1,9 +1,19 @@
{{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}
-
+
+ X
+
- Facebook
+
+ Facebook
+
- LinkedIn
+
+ LinkedIn
+
+
+
+ Bluesky
+
diff --git a/_sass/minimal-mistakes/_base.scss b/_sass/minimal-mistakes/_base.scss
index d52a42f2bc03..48e98b295b10 100644
--- a/_sass/minimal-mistakes/_base.scss
+++ b/_sass/minimal-mistakes/_base.scss
@@ -6,6 +6,8 @@ html {
/* sticky footer fix */
position: relative;
min-height: 100%;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
}
body {
diff --git a/_sass/minimal-mistakes/_buttons.scss b/_sass/minimal-mistakes/_buttons.scss
index 87e705cd6572..3b664d73619f 100644
--- a/_sass/minimal-mistakes/_buttons.scss
+++ b/_sass/minimal-mistakes/_buttons.scss
@@ -37,9 +37,13 @@
(warning, $warning-color),
(danger, $danger-color),
(info, $info-color),
+ /* brands */
+ (bluesky, $bluesky-color),
(facebook, $facebook-color),
+ (linkedin, $linkedin-color),
+ (mastodon, $mastodon-color),
(twitter, $twitter-color),
- (linkedin, $linkedin-color);
+ (x, $x-color);
@each $buttoncolor, $color in $buttoncolors {
&--#{$buttoncolor} {
diff --git a/_sass/minimal-mistakes/_copyright.scss b/_sass/minimal-mistakes/_copyright.scss
index b70c0374f557..647651203203 100644
--- a/_sass/minimal-mistakes/_copyright.scss
+++ b/_sass/minimal-mistakes/_copyright.scss
@@ -1,6 +1,6 @@
/*!
- * Minimal Mistakes Jekyll Theme 4.26.2 by Michael Rose
- * Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
+ * Minimal Mistakes Jekyll Theme 4.27.3 by Michael Rose
+ * Copyright 2013-2025 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT license
* https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
*/
diff --git a/_sass/minimal-mistakes/_notices.scss b/_sass/minimal-mistakes/_notices.scss
index 6b4e40128803..da6601214947 100644
--- a/_sass/minimal-mistakes/_notices.scss
+++ b/_sass/minimal-mistakes/_notices.scss
@@ -74,36 +74,42 @@
/* Default notice */
-.notice {
+.notice,
+.markdown-alert {
@include notice($light-gray);
}
/* Primary notice */
-.notice--primary {
+.notice--primary,
+.markdown-alert-important {
@include notice($primary-color);
}
/* Info notice */
-.notice--info {
+.notice--info,
+.markdown-alert-note {
@include notice($info-color);
}
/* Warning notice */
-.notice--warning {
+.notice--warning,
+.markdown-alert-warning {
@include notice($warning-color);
}
/* Success notice */
-.notice--success {
+.notice--success,
+.markdown-alert-tip {
@include notice($success-color);
}
/* Danger notice */
-.notice--danger {
+.notice--danger,
+.markdown-alert-caution {
@include notice($danger-color);
}
diff --git a/_sass/minimal-mistakes/_utilities.scss b/_sass/minimal-mistakes/_utilities.scss
index cd6e94b7fd1d..8ec69d20241b 100644
--- a/_sass/minimal-mistakes/_utilities.scss
+++ b/_sass/minimal-mistakes/_utilities.scss
@@ -29,13 +29,18 @@
.visually-hidden,
.screen-reader-text,
.screen-reader-text span,
-.screen-reader-shortcut {
+.screen-reader-shortcut,
+.sr-only,
+.sr-only-focusable:not(:focus) {
position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
+ clip: rect(0, 0, 0, 0);
height: 1px !important;
width: 1px !important;
+ padding: 0 !important;
border: 0 !important;
+ margin: -1px;
overflow: hidden;
+ white-space: nowrap;
}
body:hover .visually-hidden a,
@@ -219,6 +224,7 @@ $text-alignments: left, right, start, end, center, justify;
$stackoverflow-color: ".fa-stack-exchange, .fa-stack-overflow",
$tumblr-color: ".fa-tumblr, .fa-tumblr-square",
$twitter-color: ".fa-twitter, .fa-twitter-square",
+ $x-color: ".fa-x-twitter, .fa-square-x-twitter",
$vimeo-color: ".fa-vimeo, .fa-vimeo-square, .fa-vimeo-v",
$vine-color: ".fa-vine",
$xing-color: ".fa-xing, .fa-xing-square",
diff --git a/_sass/minimal-mistakes/_variables.scss b/_sass/minimal-mistakes/_variables.scss
index 2a3258735264..25f8ecfe4190 100644
--- a/_sass/minimal-mistakes/_variables.scss
+++ b/_sass/minimal-mistakes/_variables.scss
@@ -15,23 +15,56 @@ $doc-font-size-x-large: $doc-font-size * 1.375 !default;
$paragraph-indent: false !default; // true, false (default)
$indent-var: 1.3em !default;
-/* system typefaces */
-$serif: Georgia, Times, serif !default;
-$sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI",
- "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
-$monospace: Monaco, Consolas, "Lucida Console", monospace !default;
-
-/* sans serif typefaces */
-$sans-serif-narrow: $sans-serif !default;
+/* Modern font stack */
+/* https://github.com/system-fonts/modern-font-stacks */
+
+/* Sans serif - modern font stack */
+$system-ui: system-ui, sans-serif;
+$humanist: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
+$geometric-humanist: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
+$classical-humanist: Optima, Candara, 'Noto Sans', source-sans-pro, sans-serif;
+$neo-grotesque: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
+$industrial: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
+$rounded-sans: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif;
+
+/* sans serif typefaces - defined in Minimal Mistakes */
$helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif !default;
-/* serif typefaces */
+/* Serif - modern font stack */
+$transitional: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
+$old-style: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;;
+$monospace-slab-serif: 'Nimbus Mono PS', 'Courier New', monospace;
+$slab-serif: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
+$antique: Superclarendon, 'Bookman Old Style', 'URW Bookman', 'URW Bookman L', 'Georgia Pro', Georgia, serif;
+$didone: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
+
+/* serif typefaces - defined in Minimal Mistakes */
$georgia: Georgia, serif !default;
$times: Times, serif !default;
$bodoni: "Bodoni MT", serif !default;
$calisto: "Calisto MT", serif !default;
$garamond: Garamond, serif !default;
+/* Monospace - modern font stack */
+$monospace-code: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
+
+/* Handwritten - modern font stack */
+$handwritten: 'Segoe Print', 'Bradley Hand', Chilanka, TSCu_Comic, casual, cursive;
+
+/* Defaults used in Minimal mistakes */
+$default-sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
+$default-serif: Georgia, Times, serif;
+$default-monospace: Monaco, Consolas, "Lucida Console", monospace;
+
+/* Emoji native from modern font stack - add to the end of the font-face for native emojis */
+$emoji-native: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
+
+/* system typefaces */
+$serif: $default-serif !default;
+$sans-serif: $default-sans-serif !default;
+$sans-serif-narrow: $sans-serif !default;
+$monospace: $default-monospace !default;
+
$global-font-family: $sans-serif !default;
$header-font-family: $sans-serif !default;
$caption-font-family: $serif !default;
@@ -90,6 +123,7 @@ $yiq-debug: false !default;
/* brands */
$behance-color: #1769ff !default;
$bitbucket-color: #205081 !default;
+$bluesky-color: #1083fe !default;
$dribbble-color: #ea4c89 !default;
$facebook-color: #3b5998 !default;
$flickr-color: #ff0084 !default;
@@ -108,6 +142,7 @@ $soundcloud-color: #ff3300 !default;
$stackoverflow-color: #fe7a15 !default;
$tumblr-color: #32506d !default;
$twitter-color: #55acee !default;
+$x-color: #0f1419 !default;
$vimeo-color: #1ab7ea !default;
$vine-color: #00bf8f !default;
$youtube-color: #bb0000 !default;
diff --git a/_sass/minimal-mistakes/skins/_contrast.scss b/_sass/minimal-mistakes/skins/_contrast.scss
index 38283b8f6fe4..a8237878c181 100644
--- a/_sass/minimal-mistakes/skins/_contrast.scss
+++ b/_sass/minimal-mistakes/skins/_contrast.scss
@@ -5,7 +5,7 @@
/* Colors */
$text-color: #000 !default;
$muted-text-color: $text-color !default;
-$primary-color: #ff0000 !default;
+$primary-color: #b60000 !default;
$border-color: mix(#fff, $text-color, 75%) !default;
$footer-background-color: #000 !default;
$link-color: #0000ff !default;
diff --git a/assets/js/main.min.js b/assets/js/main.min.js
index 9ae91ed20349..649c52553da9 100644
--- a/assets/js/main.min.js
+++ b/assets/js/main.min.js
@@ -1,6 +1,6 @@
/*!
- * Minimal Mistakes Jekyll Theme 4.26.2 by Michael Rose
- * Copyright 2013-2024 Michael Rose - mademistakes.com | @mmistakes
+ * Minimal Mistakes Jekyll Theme 4.27.3 by Michael Rose
+ * Copyright 2013-2025 Michael Rose - mademistakes.com | @mmistakes
* Free for personal and commercial use under the MIT license
* https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
*/
diff --git a/docs/_config.yml b/docs/_config.yml
index 2266a9047012..2935fc44da24 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -129,6 +129,7 @@ footer:
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/mmistakes"
+ since: "2013"
# Reading Files
diff --git a/docs/_data/theme.yml b/docs/_data/theme.yml
index 1fa7ff01ebdd..126a435aed2b 100644
--- a/docs/_data/theme.yml
+++ b/docs/_data/theme.yml
@@ -1,3 +1,3 @@
# for use with in-page templates
---
-version: 4.26.2
+version: 4.27.3
diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md
index 04b97b1e1a5e..c748218d1caa 100644
--- a/docs/_docs/05-configuration.md
+++ b/docs/_docs/05-configuration.md
@@ -962,6 +962,15 @@ footer:
To change "Follow:" text that precedes footer links, edit the `follow_label` key in `_data/ui-text.yml`.
+The copyright notice in the footer shows the year the site has been generated. This can be overridden with `time` in `_config.yml`. If `footer.since` is added and the value is not equal to the current year or the optional value of `time`, then a time range will be shown.
+
+```yaml
+footer:
+ since: "2013"
+```
+
+The above will result for example in `© 2013 - 2025 Minimal ...`. Note that `time` and `footer.since` also support values other than year numbers.
+
## Reading files
Nothing out of the ordinary here. `include` and `exclude` may be the only things you need to alter.
@@ -1232,7 +1241,7 @@ If you care at all about performance (and really who doesn't) compressing the HT
If you're hosting with GitHub Pages there aren't many options afforded to you for optimizing the HTML Jekyll generates. Thankfully there is some Liquid wizardry you can use to strip whitespace and comments to reduce file size.
-There's a variety of configurations and caveats to using the `compress` layout, so be sure to read through the [documentation](http://jch.penibelst.de/) if you decide to make change the defaults set in the theme's `_config.yml`.
+There's a variety of configurations and caveats to using the `compress` layout, so be sure to read through the [documentation](http://jch.penibelst.de/) if you decide to change the defaults set in the theme's `_config.yml`.
```yaml
compress_html:
diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md
index 2e881ff50bdc..8272a2e888a7 100644
--- a/docs/_docs/18-history.md
+++ b/docs/_docs/18-history.md
@@ -5,7 +5,7 @@ permalink: "/docs/history/"
excerpt: Change log of enhancements and bug fixes made to the theme.
sidebar:
nav: docs
-last_modified_at: '2025-01-02T02:21:49+08:00'
+last_modified_at: '2025-08-31T11:43:03+08:00'
toc: false
---
@@ -19,6 +19,43 @@ toc: false
### Enhancements
+- Updated Traditional Chinese translation [#5250](https://github.com/mmistakes/minimal-mistakes/issues/5250)
+- Add built-in support for jekyll-gfm-admonitions [#5312](https://github.com/mmistakes/minimal-mistakes/issues/5312)
+
+## [4.27.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.3)
+
+### Bug Fixes
+
+- Add explicit CSS rules for `.sr-only` following Font Awesome 7's changes. [#5296](https://github.com/mmistakes/minimal-mistakes/issues/5296)
+
+## [4.27.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.2)
+
+### Enhancements
+
+- Hide `.page__footer-follow` if there are no links nor atom feed. [#5279](https://github.com/mmistakes/minimal-mistakes/issues/5279)
+- Add HTML escaping for some titles, labels and metada that was missing. [#5276](https://github.com/mmistakes/minimal-mistakes/issues/5276)
+- Add optional `footer.since` for copyright time range. [#5275](https://github.com/mmistakes/minimal-mistakes/issues/5275)
+
+### Bug Fixes
+
+- Add `escape_once` to gallery title and alt text.
+
+## [4.27.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.1)
+
+### Enhancements
+
+- Add a "Share on Bluesky" button [#5179](https://github.com/mmistakes/minimal-mistakes/issues/5179)
+- Add preset variables for modern font stack [#5033](https://github.com/mmistakes/minimal-mistakes/issues/5033)
+- Update X share button to match brand color [#5245](https://github.com/mmistakes/minimal-mistakes/issues/5245)
+
+### Bug Fixes
+
+- Fix wrong icon and color for X share button.
+
+## [4.27.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.0)
+
+### Enhancements
+
- Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886)
- Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890)
- Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
@@ -28,6 +65,8 @@ toc: false
- Use `documents-collection.html` partial in `home` layout.
- Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003)
- Add provider and comments info to `single.html` layout for non-production. [#5068](https://github.com/mmistakes/minimal-mistakes/issues/5068)
+- Tweak contrast skin $primary-color to adhere to WCAG guidelines. [#5126](https://github.com/mmistakes/minimal-mistakes/issues/5126)
+- Update social share buttons to reflect Twitter rebranding to X [#5210](https://github.com/mmistakes/minimal-mistakes/issues/5210)
### Bug Fixes
@@ -38,6 +77,8 @@ toc: false
- Fix bad <figure> HTML if "alt" contains quotes.
- Fix extra newline generated in `_includes/post_pagination.html`.
- Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042)
+- Fix typo in "Configuration" [#5106](https://github.com/mmistakes/minimal-mistakes/issues/5106)
+- bundle exec jekyll serve will fail if more than once [#5193](https://github.com/mmistakes/minimal-mistakes/issues/5193)
### Documentation & Maintenance
diff --git a/docs/_pages/home.md b/docs/_pages/home.md
index d0758fb9258b..15090361e93d 100644
--- a/docs/_pages/home.md
+++ b/docs/_pages/home.md
@@ -10,7 +10,7 @@ header:
url: "/docs/quick-start-guide/"
excerpt: >
A flexible two-column Jekyll theme. Perfect for building personal sites, blogs, and portfolios.
- Latest release v4.26.2
+ Latest release v4.27.3
feature_row:
- image_path: /assets/images/mm-customizable-feature.png
alt: "customizable"
diff --git a/package-lock.json b/package-lock.json
index 10afd583925e..845c4ccc0501 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "minimal-mistakes",
- "version": "4.26.1",
+ "version": "4.27.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "minimal-mistakes",
- "version": "4.26.1",
+ "version": "4.27.2",
"license": "MIT",
"devDependencies": {
"uglify-js": "^3.17.4"
diff --git a/package.json b/package.json
index a1557ee0ef7a..6b37ff2dd6b0 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "minimal-mistakes",
"private": true,
- "version": "4.26.2",
+ "version": "4.27.3",
"description": "Minimal Mistakes 2 column Jekyll theme.",
"repository": {
"type": "git",
diff --git a/test/_config.yml b/test/_config.yml
index 9656a3764878..14b39288f6f2 100644
--- a/test/_config.yml
+++ b/test/_config.yml
@@ -122,6 +122,7 @@ footer:
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/"
+ since: "2013"
# Reading Files