You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Replace `base_path` include with `absolute_url` filter where possible.
7
+
- Allow images to be placed in other folders. Remove `/images/` only restriction and encourage placement in `/assets/images/` instead. **Full paths are now required. If upgrading from MM 3.4 add `/images/` before filenames in Front Matter and `_config.yml` variables.**
- Added missing Turkish translations for UI text. [#621](https://github.com/mmistakes/minimal-mistakes/pull/621)
10
+
- Make author avatar optional in sidebar.
11
+
- Update **/_includes/seo.html** for meta description. [#558](https://github.com/mmistakes/minimal-mistakes/pull/558)
12
+
13
+
### Bug Fixes
14
+
15
+
- Fix navigation bar animation "flicker" in Safari [#568](https://github.com/mmistakes/minimal-mistakes/issues/568)
16
+
- Fix `author.avatar` paths for externally hosted images.
17
+
18
+
### Maintenance
19
+
20
+
- Add documentation around `gem "minimal-mistakes-jekyll"` installation and use.
21
+
- Add note about using full image paths for eg. `assets/images/filename.jpg` (header images, overlays, galleries, feature rows, etc.) instead of assuming they will always be in `/images/`.
22
+
- Add "[Overriding Theme Defaults](https://mmistakes.github.io/minimal-mistakes/docs/overriding-theme-defaults/)" page to documentation.
Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. As the name implies --- styling is purposely minimalistic to be enhanced and customized by you :smile:.
6
6
7
7
See what's new in the [CHANGELOG](CHANGELOG.md).
8
8
9
-
Interested in testing out a [**pre-release "gemified" version**](https://github.com/mmistakes/minimal-mistakes/tree/feature/theme-gem) of the theme? Read this blog post to [learn how](https://mmistakes.github.io/minimal-mistakes/jekyll/gemified-theme-beta/).
9
+
:sparkles: Minimal Mistakes is now available as a [Ruby gem](https://rubygems.org/gems/minimal-mistakes-jekyll). Consult the [Quick-Start Guide](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/) and [this blog post](https://mmistakes.github.io/minimal-mistakes/jekyll/gemified-theme-beta/) to learn how to upgrade.
The theme includes responsive layouts (`single`, `archive`, and `splash` pages) that look great on mobile and desktop browsers.
16
+

17
17
18
-

19
-
20
-
## [Installation and Setup](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/) / [Preview the Theme](https://mmistakes.github.io/minimal-mistakes/)
21
-
22
-
### Notable Features
18
+
## Notable Features
23
19
20
+
- "Gemified" for easier install/upgrading
24
21
- Compatible with Jekyll 3.x and GitHub Pages
25
22
- Support for Jekyll's built-in Sass/SCSS preprocessor
26
-
- Several layout options (single, archive, splash pages)
23
+
- Several responsive layout options (single, archive index, splash, and paginated home page)
27
24
- SEO optimized with support for [Twitter Cards](https://dev.twitter.com/cards/overview) and [Open Graph](http://ogp.me/) data
28
-
- Optional header images, sidebars, table of contents, galleries, related posts, breadcrumb links, and more.
29
-
-Optional comments ([Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), static-based via [Staticman](https://staticman.net/), and custom).
- UI localized text: English (default), Spanish, French, and Turkish.
25
+
- Optional [header images](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#headers), [custom sidebars](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#sidebars), [table of contents](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#table-of-contents), [galleries](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery), related posts, [breadcrumb links](https://mmistakes.github.io/minimal-mistakes/docs/configuration/#breadcrumb-navigation-beta), [navigation lists](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list), and more.
26
+
-Commenting support (powered by [Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), static-based via [Staticman](https://staticman.net/), and custom).
@@ -42,7 +39,7 @@ The theme includes responsive layouts (`single`, `archive`, and `splash` pages)
42
39
|[Categories Archive][categories-archive]| Posts grouped by category. |
43
40
|[Tags Archive][tags-archive]| Posts grouped by tags. |
44
41
45
-
For even more demo pages check the [posts archive][year-archive].
42
+
For even more demo pages check the [posts archive][year-archive] on the demo site. Looking for the source code to peep the YAML Front Matter and Markdown used? Check the [`gh-pages`](https://github.com/mmistakes/minimal-mistakes/tree/gh-pages) branch.
Add this line to your Jekyll site's `_config.yml` file:
62
+
63
+
```yaml
64
+
theme: minimal-mistakes-jekyll
65
+
```
66
+
67
+
Run Bundler:
68
+
69
+
```bash
70
+
bundle install
71
+
```
72
+
73
+
## Usage
74
+
75
+
For detailed instructions on how to configure, customize, add content, and more read the [theme's documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
76
+
77
+
**Note:** Gem version of the theme requires Jekyll v3.3+ and is not supported with sites hosted with [GitHub Pages](https://pages.github.com/). You can still use the theme on GitHub Pages, you'll just need to install using the old "[repo fork method](https://mmistakes.github.io/minimal-mistakes/docs/installation/)".
78
+
56
79
---
57
80
58
81
## Contributing
@@ -67,6 +90,8 @@ This goes for author sidebar links and "share button" additions -- I have no int
67
90
68
91
To help me out try to avoid creating pull requests on `master` and instead branch off of `develop`. It's much easier for me to test, merge, and roll them into new releases this way.
69
92
93
+
Theme documentation and demo pages can be found in the `gh-pages` branch, please submit pull requests against that branch.
0 commit comments