benimal-mistakes-jekyll 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +1095 -0
  3. data/LICENSE.txt +63 -0
  4. data/README.md +245 -0
  5. data/_data/navigation.yml +12 -0
  6. data/_data/ui-text.yml +1079 -0
  7. data/_includes/analytics-providers/custom.html +3 -0
  8. data/_includes/analytics-providers/google-gtag.html +9 -0
  9. data/_includes/analytics-providers/google-universal.html +10 -0
  10. data/_includes/analytics-providers/google.html +14 -0
  11. data/_includes/analytics.html +14 -0
  12. data/_includes/archive-single.html +38 -0
  13. data/_includes/author-profile-custom-links.html +7 -0
  14. data/_includes/author-profile.html +263 -0
  15. data/_includes/base_path +5 -0
  16. data/_includes/breadcrumbs.html +39 -0
  17. data/_includes/browser-upgrade.html +3 -0
  18. data/_includes/category-list.html +26 -0
  19. data/_includes/comment.html +22 -0
  20. data/_includes/comments-providers/custom.html +3 -0
  21. data/_includes/comments-providers/discourse.html +13 -0
  22. data/_includes/comments-providers/disqus.html +15 -0
  23. data/_includes/comments-providers/facebook.html +8 -0
  24. data/_includes/comments-providers/google-plus.html +2 -0
  25. data/_includes/comments-providers/scripts.html +18 -0
  26. data/_includes/comments-providers/staticman.html +42 -0
  27. data/_includes/comments-providers/staticman_v2.html +42 -0
  28. data/_includes/comments.html +171 -0
  29. data/_includes/documents-collection.html +19 -0
  30. data/_includes/feature_row +53 -0
  31. data/_includes/figure +12 -0
  32. data/_includes/footer.html +25 -0
  33. data/_includes/footer/custom.html +3 -0
  34. data/_includes/gallery +47 -0
  35. data/_includes/group-by-array +47 -0
  36. data/_includes/head.html +43 -0
  37. data/_includes/head/custom.html +5 -0
  38. data/_includes/masthead.html +33 -0
  39. data/_includes/nav_list +47 -0
  40. data/_includes/page__hero.html +61 -0
  41. data/_includes/page__hero_video.html +4 -0
  42. data/_includes/page__taxonomy.html +7 -0
  43. data/_includes/paginator.html +69 -0
  44. data/_includes/post_pagination.html +14 -0
  45. data/_includes/posts-category.html +3 -0
  46. data/_includes/posts-tag.html +3 -0
  47. data/_includes/read-time.html +15 -0
  48. data/_includes/schedule.html +57 -0
  49. data/_includes/scripts.html +28 -0
  50. data/_includes/search/algolia-search-scripts.html +54 -0
  51. data/_includes/search/google-search-scripts.html +30 -0
  52. data/_includes/search/lunr-search-scripts.html +10 -0
  53. data/_includes/search/search_form.html +18 -0
  54. data/_includes/seo.html +164 -0
  55. data/_includes/sidebar.html +23 -0
  56. data/_includes/social-share.html +13 -0
  57. data/_includes/tag-list.html +26 -0
  58. data/_includes/toc +7 -0
  59. data/_includes/toc.html +75 -0
  60. data/_includes/two-day-schedule.html +71 -0
  61. data/_includes/video +11 -0
  62. data/_layouts/archive-taxonomy.html +15 -0
  63. data/_layouts/archive.html +26 -0
  64. data/_layouts/categories.html +42 -0
  65. data/_layouts/category.html +9 -0
  66. data/_layouts/collection.html +9 -0
  67. data/_layouts/compress.html +10 -0
  68. data/_layouts/default.html +42 -0
  69. data/_layouts/home.html +11 -0
  70. data/_layouts/posts.html +29 -0
  71. data/_layouts/search.html +42 -0
  72. data/_layouts/single.html +92 -0
  73. data/_layouts/splash.html +22 -0
  74. data/_layouts/tag.html +9 -0
  75. data/_layouts/tags.html +42 -0
  76. data/_sass/minimal-mistakes.scss +40 -0
  77. data/_sass/minimal-mistakes/_animations.scss +21 -0
  78. data/_sass/minimal-mistakes/_archive.scss +362 -0
  79. data/_sass/minimal-mistakes/_base.scss +358 -0
  80. data/_sass/minimal-mistakes/_buttons.scss +98 -0
  81. data/_sass/minimal-mistakes/_footer.scss +91 -0
  82. data/_sass/minimal-mistakes/_forms.scss +393 -0
  83. data/_sass/minimal-mistakes/_masthead.scss +83 -0
  84. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  85. data/_sass/minimal-mistakes/_navigation.scss +544 -0
  86. data/_sass/minimal-mistakes/_notices.scss +100 -0
  87. data/_sass/minimal-mistakes/_page.scss +520 -0
  88. data/_sass/minimal-mistakes/_print.scss +252 -0
  89. data/_sass/minimal-mistakes/_reset.scss +187 -0
  90. data/_sass/minimal-mistakes/_search.scss +125 -0
  91. data/_sass/minimal-mistakes/_sidebar.scss +310 -0
  92. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  93. data/_sass/minimal-mistakes/_tables.scss +37 -0
  94. data/_sass/minimal-mistakes/_utilities.scss +524 -0
  95. data/_sass/minimal-mistakes/_variables.scss +154 -0
  96. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  97. data/_sass/minimal-mistakes/skins/_aqua.scss +30 -0
  98. data/_sass/minimal-mistakes/skins/_contrast.scss +51 -0
  99. data/_sass/minimal-mistakes/skins/_dark.scss +42 -0
  100. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  101. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  102. data/_sass/minimal-mistakes/skins/_mint.scss +23 -0
  103. data/_sass/minimal-mistakes/skins/_neon.scss +53 -0
  104. data/_sass/minimal-mistakes/skins/_plum.scss +60 -0
  105. data/_sass/minimal-mistakes/skins/_sunrise.scss +44 -0
  106. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  107. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  108. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  109. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  125. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  126. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  127. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  128. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  129. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  130. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  131. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  132. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  133. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  137. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  138. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  139. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  140. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  146. data/assets/css/main.scss +8 -0
  147. data/assets/js/_main.js +106 -0
  148. data/assets/js/lunr/lunr-en.js +75 -0
  149. data/assets/js/lunr/lunr-gr.js +528 -0
  150. data/assets/js/lunr/lunr-store.js +52 -0
  151. data/assets/js/lunr/lunr.js +2977 -0
  152. data/assets/js/lunr/lunr.min.js +6 -0
  153. data/assets/js/main.min.js +9 -0
  154. data/assets/js/plugins/jquery.fitvids.js +82 -0
  155. data/assets/js/plugins/jquery.greedy-navigation.js +83 -0
  156. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  157. data/assets/js/plugins/jquery.smooth-scroll.min.js +9 -0
  158. data/assets/js/vendor/jquery/jquery-3.3.1.min.js +2 -0
  159. metadata +327 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2352099a143fcdaf462c69f42e4a79c61b6ab69fd89ab87468839affb8850536
4
+ data.tar.gz: '0941755dca3d4e29086119b25046dfa968852b7278bad106d8f8705cd5895f62'
5
+ SHA512:
6
+ metadata.gz: 29d58236c8983f41dd98c006b055052c9fc39158d582cf1b869fe773db4e4a1b0eac3965a796f9301404cf9a8695ec6f2cb1ffc059d699ccc528b8c71f52787e
7
+ data.tar.gz: 9cf9f43076046cb5df530fc45a3adf60bfb8fb03dd5e4572071a4c6a773563f7338c8fda232f309c8b9fdcf5814130d12f04f665078da8b48fb9ad5884f0939e
data/CHANGELOG.md ADDED
@@ -0,0 +1,1095 @@
1
+ ## Unreleased
2
+
3
+ ### Enhancements
4
+
5
+ * Add missing French translations. [#1741](https://github.com/mmistakes/minimal-mistakes/pull/1741)
6
+
7
+ ## [4.12.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.12.0)
8
+
9
+ ### Enhancements
10
+
11
+ * Add Hungarian localized UI text strings. [#1682](https://github.com/mmistakes/minimal-mistakes/pull/1682)
12
+ * DRY `tags_max` calculation in tags.html layout. [#1696](https://github.com/mmistakes/minimal-mistakes/pull/1696)
13
+ * DRY `categories_max` calculation in categories.html layout.
14
+ * Add support for ["sticking" table of contents](https://mmistakes.github.io/minimal-mistakes/layout-table-of-contents-sticky/) to top of page via `toc_sticky: true` YAML Front Matter.
15
+ * Add support for captioning images in feature row helper via `image_caption` YAML Front Matter. [#1440](https://github.com/mmistakes/minimal-mistakes/issues/1440)
16
+ * Add [Google Custom Search Engine](https://cse.google.com/cse) support. [#1652](https://github.com/mmistakes/minimal-mistakes/issues/1652)
17
+ * Update Font Awesome to version [`5.1.13`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md)
18
+ * Add "Pets" sample archive page to documentation site. [#1664](https://github.com/mmistakes/minimal-mistakes/pull/1664)
19
+ * Add GitLab social icon brand color. [#1653](https://github.com/mmistakes/minimal-mistakes/issues/1653)
20
+ * Prevent line breaks between FontAwesome icon and text in footer social links. [#1659](https://github.com/mmistakes/minimal-mistakes/issues/1659)
21
+
22
+ ### Bug Fixes
23
+
24
+ * Set default `title_separator`. [#1701](https://github.com/mmistakes/minimal-mistakes/pull/1701)
25
+ * Fix `naver_site_verification` typo in /_includes/seo.html. [#1687](https://github.com/mmistakes/minimal-mistakes/pull/1687)
26
+ * Fix table of contents missing borders. [#1675](https://github.com/mmistakes/minimal-mistakes/issues/1675)
27
+ * Fix link to "Recipes" sample archive on documentation site. [#1664](https://github.com/mmistakes/minimal-mistakes/pull/1664)
28
+ * Update example Reddit social share interpolation syntax in documentation. [#1656](https://github.com/mmistakes/minimal-mistakes/issues/1656)
29
+ * Fix "Back to Top" links on pages that use [header overlays](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#header-overlay).
30
+
31
+ ## [4.11.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.11.2)
32
+
33
+ ### Enhancements
34
+
35
+ * Update Font Awesome to version [`5.0.12`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md).
36
+ * Add Slovak localized UI text strings. [#1613](https://github.com/mmistakes/minimal-mistakes/pull/1613)
37
+ * Add option to anonymize IP addresses of hits sent to Google Analytics. [#1636](https://github.com/mmistakes/minimal-mistakes/pull/1636)
38
+
39
+ ### Bug Fixes
40
+
41
+ * Use correct text string for "Back to Top" link. [#1595](https://github.com/mmistakes/minimal-mistakes/issues/1595)
42
+ * Add conditionals for showing `reCaptcha.siteKey` and `reCaptcha.secret` in Staticman comments form.
43
+
44
+ ## [4.11.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.11.1)
45
+
46
+ ### Enhancements
47
+
48
+ * Add default `theme` and `remote_theme` values to `_config.yml`.
49
+ * Add new layouts (`posts`, `categories`, `tags`, `collection`, `category`, and `tag`) for easier archive page creation.
50
+
51
+ ### Bug Fixes
52
+
53
+ * Replace `absolute_url` filter with `relative_url` where it makes sense (asset/navigation related paths). [#1588](https://github.com/mmistakes/minimal-mistakes/issues/1588)
54
+ * Fix search excerpts that run together because of implied spaces.
55
+
56
+ ## [4.10.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.10.1)
57
+
58
+ ### Enhancements
59
+
60
+ * Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491)
61
+ * Add link to jekyll-algolia's `files_to_exclude` documentation.
62
+ * Update Font Awesome to version [`5.0.8`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md). [#1561](https://github.com/mmistakes/minimal-mistakes/pull/1561)
63
+ * Activate Algolia search for documentation site. [#1570](https://github.com/mmistakes/minimal-mistakes/issues/1570)
64
+ * Add missing German translations. [#1577](https://github.com/mmistakes/minimal-mistakes/pull/1577)
65
+ * Add support for Google Analytics with global site tag (gtag.js) [#1563](https://github.com/mmistakes/minimal-mistakes/pull/1563)
66
+
67
+ ### Bug Fixes
68
+
69
+ * Focus Algolia search input after clicking on search toggle.
70
+
71
+ ## [4.10.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.10.0)
72
+
73
+ ### Enhancements
74
+
75
+ * Add support for [Algolia](https://www.algolia.com/) search provider ([see demo](https://mmistakes.github.io/minimal-mistakes-algolia-search/)). [#1416](https://github.com/mmistakes/minimal-mistakes/issues/1416)
76
+
77
+ ## [4.9.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.9.1)
78
+
79
+ ### Enhancements
80
+
81
+ * Simplify year archive Liquid.
82
+ * Add documentation on how to downgrade theme.
83
+ * Improve greedy navigation's layout when JavaScript is disabled.
84
+ * Improve SEO include by grouping similar tags, reducing white-space, and adding `article:modified_time`. [#1456](https://github.com/mmistakes/minimal-mistakes/pull/1456)
85
+ * Minify `assets/js/lunr/lunr.js`.
86
+ * Improve calculation of Greedy navigation's `availableSpace`.
87
+ * Add Danish and Russian translations for new search strings. [#1472](https://github.com/mmistakes/minimal-mistakes/pull/1472) [#1477](https://github.com/mmistakes/minimal-mistakes/pull/1477)
88
+ * Indicate that archive titles are links with an underline.
89
+ * Remove `base_path` include from `/test` pages.
90
+ * Reduce font-size of page meta in list/grid items.
91
+ * Improve feature row styling when used with `archive` layout. [#1484](https://github.com/mmistakes/minimal-mistakes/issues/1484)
92
+ * Improve German translations. [#1511](https://github.com/mmistakes/minimal-mistakes/pull/1511)
93
+ * Update Font Awesome to `5.0.6`. [#1513](https://github.com/mmistakes/minimal-mistakes/pull/1513)
94
+ * Add `wide` variant to single layout. [#1516](https://github.com/mmistakes/minimal-mistakes/pull/1516)
95
+
96
+ ### Bug Fixes
97
+
98
+ * Allow `author` to accept an object or string. [#289](https://github.com/mmistakes/minimal-mistakes/issues/289)
99
+ * Fix syntax highlighting line number styling inconsistency. [#1467](https://github.com/mmistakes/minimal-mistakes/issues/1467)
100
+ * Fix author sidebar icon colors for dark skins. [#1482](https://github.com/mmistakes/minimal-mistakes/issues/1482)
101
+ * Remove misleading underline hover state on feature row items.
102
+ * Properly escape quotes in `site.social.name` and `site.name`. [#1485](https://github.com/mmistakes/minimal-mistakes/pull/1485)
103
+ * Fix typo in upgrading documentation. [#1487](https://github.com/mmistakes/minimal-mistakes/pull/1487)
104
+ * Fix `border-bottom` for Gist line numbers.
105
+ * Replace `|` with HTML entity when used as title separator. [#760](https://github.com/mmistakes/minimal-mistakes/issues/760)
106
+
107
+ ## [4.9.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.9.0)
108
+
109
+ ### Enhancements
110
+
111
+ * Add `show_overlay_excerpt` for disabling overlay image excerpt text. [#1436](https://github.com/mmistakes/minimal-mistakes/pull/1436)
112
+ * Update remote theme installation instructions in Quick Start Guide. [#1439](https://github.com/mmistakes/minimal-mistakes/pull/1439)
113
+ * Reduce visual weight of code blocks.
114
+ * Add Lunr.js Greek stemmer. [#1445](https://github.com/mmistakes/minimal-mistakes/pull/1445)
115
+ * Update Font Awesome 5 [SVG with JavaScript version](https://fontawesome.com/how-to-use/svg-with-js). [#1446](https://github.com/mmistakes/minimal-mistakes/pull/1446)
116
+ * Note: if Font Awesome icons were used in the content of posts/pages or custom table of contents, find and replace any icons that have different names between version 4 and 5. Make sure to read the [complete list](https://fontawesome.com/how-to-use/upgrading-from-4#icon-name-changes-full) on Font Awesome's site.
117
+ * Reduce size of Lunr.js search JSON data and introduce `site.search_full_content` flag for limiting size of JSON file. [#1449](https://github.com/mmistakes/minimal-mistakes/pull/1449)
118
+ * Improve syntax highlighting styles. [#1450](https://github.com/mmistakes/minimal-mistakes/pull/1450)
119
+
120
+ ### Bug Fixes
121
+
122
+ * Fix code block extra white-space when using [Jekyll's highlight tag](https://jekyllrb.com/docs/templates/#code-snippet-highlighting) with `linenos`. [#1437](https://github.com/mmistakes/minimal-mistakes/issues/1437)
123
+ * Round top-right corner of code block icon.
124
+ * Remove Lunr.js trimmer and bring back colons. [#1445](https://github.com/mmistakes/minimal-mistakes/pull/1445)
125
+ * Fix sticky `.sidebar` that overlaps main content when resizing viewport. [#1447](https://github.com/mmistakes/minimal-mistakes/issues/1447)
126
+
127
+ ## [4.8.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.8.1)
128
+
129
+ ### Enhancements
130
+
131
+ * Add linkback functionality to author avatar and name in sidebar via `author.home`. [#1386](https://github.com/mmistakes/minimal-mistakes/pull/1386)
132
+ * Add Japanese localized UI text strings. [#1411](https://github.com/mmistakes/minimal-mistakes/pull/1411)
133
+ * Update Lunr.js to 2.1.5 [#1419](https://github.com/mmistakes/minimal-mistakes/pull/1419)
134
+
135
+ ### Bug Fixes
136
+
137
+ * Fixed broken link to Staticman's page [#1422](https://github.com/mmistakes/minimal-mistakes/pull/1422)
138
+ * Fix Lunr search to work with number tags. [#1409](https://github.com/mmistakes/minimal-mistakes/issues/1409) [#1419](https://github.com/mmistakes/minimal-mistakes/pull/1419)
139
+
140
+ ## [4.8.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.8.0)
141
+
142
+ ### Enhancements
143
+
144
+ * Open social share links in a new window. [#1357](https://github.com/mmistakes/minimal-mistakes/pull/1357)
145
+ * Remove Alexa.com verification due to retiring of "[Claim Your Site](https://support.alexa.com/hc/en-us/articles/219135887)" feature. [#1350](https://github.com/mmistakes/minimal-mistakes/issues/1350)
146
+ * Disable analytics in `development` environment. [#1362](https://github.com/mmistakes/minimal-mistakes/pull/1362)
147
+ * Disable comments in `development` environment. [#1363](https://github.com/mmistakes/minimal-mistakes/pull/1363)
148
+ * Exclude specific pages/posts from search index by adding `search: false` to the YAML Front Matter. [#1369](https://github.com/mmistakes/minimal-mistakes/pull/1369)
149
+ * Add optional `description` key to masthead links for clarifying their purpose with the `title` attribute. [#1380](https://github.com/mmistakes/minimal-mistakes/pull/1380)
150
+ * Incorporate site search into masthead. [#1383](https://github.com/mmistakes/minimal-mistakes/pull/1383)
151
+ * Update gem dependencies. [#1388](https://github.com/mmistakes/minimal-mistakes/pull/1388)
152
+
153
+ ### Bug Fixes
154
+
155
+ * Fix `post.content` typo in `assets/js/lunr-en.js`. [#1354](https://github.com/mmistakes/minimal-mistakes/pull/1354)
156
+ * Fix "lunr-en.js:1 Uncaught SyntaxError: Unexpected token <" in `assets/js/lunr-en.js`. [#1356](https://github.com/mmistakes/minimal-mistakes/pull/1356)
157
+ * Rename Naver verification `naver_site_verification` to be consistent with other site variables.
158
+ * Fix button class in "Post with Table Of Contents" demo content. [#1368](https://github.com/mmistakes/minimal-mistakes/pull/1368)
159
+ * Fix capitalization of WordPress in documentation. [#1381](https://github.com/mmistakes/minimal-mistakes/pull/1381)
160
+ * Fix zh-HK UI text to point to Traditional Chinese. [#1374](https://github.com/mmistakes/minimal-mistakes/issues/1374) [#1389](https://github.com/mmistakes/minimal-mistakes/pull/1389)
161
+
162
+ ## [4.7.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.7.1)
163
+
164
+ ### Enhancements
165
+
166
+ * Add search layout powered by [Lunr](https://lunrjs.com/). [#1353](https://github.com/mmistakes/minimal-mistakes/pull/1353)
167
+ * Use [jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme) for demo site. [#1339](https://github.com/mmistakes/minimal-mistakes/issues/1339)
168
+ * Add note about WordPress to Staticman comment migration tool in documentation. [#1346](https://github.com/mmistakes/minimal-mistakes/issues/1346)
169
+
170
+ ### Bug Fixes
171
+
172
+ * Change `http` to `https` for Jekyll and Browserhappy links. [#1342](https://github.com/mmistakes/minimal-mistakes/pull/1342) [#1343](https://github.com/mmistakes/minimal-mistakes/pull/1343)
173
+ * Change `http` author profile links to `https` when supported. [#1349](https://github.com/mmistakes/minimal-mistakes/pull/1349)
174
+ * Fix broken SCSS partial links in layouts documentation. [#1351](https://github.com/mmistakes/minimal-mistakes/issues/1351)
175
+
176
+ ## [4.7.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.7.0)
177
+
178
+ ### Enhancements
179
+
180
+ * Add `alt` description to avatar image. [#1226](https://github.com/mmistakes/minimal-mistakes/pull/1226)
181
+ * Clarify documentation about which `assets` folders and files to remove when migrating to the gem version of the theme. [#1268](https://github.com/mmistakes/minimal-mistakes/issues/1268)
182
+ * Add note about Staticman GitHub compatibility. [#1273](https://github.com/mmistakes/minimal-mistakes/issues/1273)
183
+ * Add missing Brazilian Portuguese translations to `ui-text.yml`. [#1278](https://github.com/mmistakes/minimal-mistakes/pull/1278)
184
+ * Update font stack documentation. [#1292](https://github.com/mmistakes/minimal-mistakes/pull/1292)
185
+ * Improve accessibility of navigation menu button. [#1099](https://github.com/mmistakes/minimal-mistakes/issues/1099)
186
+ * Add Naver Webmaster Tools verification. [#1286](https://github.com/mmistakes/minimal-mistakes/pull/1286)
187
+ * Add support for Staticman v2 endpoint and reCAPTCHA.
188
+ * Add Polish localized UI text strings. [#1304](https://github.com/mmistakes/minimal-mistakes/pull/1304)
189
+ * Add toggleable table of contents via YAML Front Matter. Note: `toc` helper include will be deprecated in next major version. [#1222](https://github.com/mmistakes/minimal-mistakes/issues/1222)
190
+ * Refactor seo.html include to DRY-up page image handling.
191
+ * Add support for setting what image is used by OpenGraph and Twitter via `page.header.og_image`. [#1316](https://github.com/mmistakes/minimal-mistakes/issues/1316)
192
+ * Fix the spelling of some product names in the author profile. [#1328](https://github.com/mmistakes/minimal-mistakes/pull/1328)
193
+ * Add `aqua`, `neon`, and `plum` skins. [#1336](https://github.com/mmistakes/minimal-mistakes/pull/1336)
194
+ * Update **jekyll-toc** with heading classes fix. [#1337](https://github.com/mmistakes/minimal-mistakes/pull/1337)
195
+ * Remove `+` from Google+ author link to allow non-vanity URLs. [#1319](https://github.com/mmistakes/minimal-mistakes/pull/1319)
196
+
197
+ ### Bug Fixes
198
+
199
+ * Fix system font rendering in Chrome on macOS/OS X. [#1290](https://github.com/mmistakes/minimal-mistakes/pull/1290)
200
+ * Fix extra padding in syntax highlighted code blocks due to Rouge 2 adding `<div class="highlight"></div>` to markup.
201
+
202
+ ## [4.6.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.6.0)
203
+
204
+ ### Enhancements
205
+
206
+ * Test strict Front Matter in `/test` site. [#1236](https://github.com/mmistakes/minimal-mistakes/pull/1236)
207
+ * Rename `gems` key to `plugins`. [#1239](https://github.com/mmistakes/minimal-mistakes/pull/1239)
208
+ * Add [YIQ Color Contrast](https://github.com/easy-designs/yiq-color-contrast) mixin for determining lightness of a color.
209
+ * DRY up button CSS using Sass lists and YIQ Color Contrast mixin.
210
+ * Add `btn--primary` button class. **Note:** elements that were previously using only a `.btn` class will now also need `.btn--primary` (eg. `<a class="btn btn--primary" href="#">my link</a>`).
211
+ * Add `air`, `contrast`, `dark`, `dirt`, `mint`, and `sunrise` skin color options. [#1208](https://github.com/mmistakes/minimal-mistakes/issues/1208)
212
+ * Allow scripts in `<head>` and before `</body>` to be added/overridden with `head_scripts` and `footer_scripts` arrays in `_config.yml`. [#1241](https://github.com/mmistakes/minimal-mistakes/pull/1241)
213
+ * Update JavaScript dependencies: jQuery `v3.2.1`, jQuery Smooth Scroll `v2.2.0`, and Magnific Popup `v1.1.0`. [#328690652](https://github.com/mmistakes/minimal-mistakes/pull/1241#issuecomment-328690652)
214
+
215
+ ## [4.5.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.2)
216
+
217
+ ### Enhancements
218
+
219
+ * Add `.page__comments-form` to "non-printing" selectors in print styles. [#1195](https://github.com/mmistakes/minimal-mistakes/pull/1195)
220
+ * Add LinkedIn and Steam author sidebar examples to `_config.yml`. [#1203](https://github.com/mmistakes/minimal-mistakes/pull/1203) [#1204](https://github.com/mmistakes/minimal-mistakes/pull/1204)
221
+ * Remove the http-equiv="cleartype" meta tag. [#1087](https://github.com/mmistakes/minimal-mistakes/pull/1087)
222
+ * Clarify documentation for `jekyll-archives` plugin and how to install. [#1206](https://github.com/mmistakes/minimal-mistakes/pull/1206)
223
+ * Clarify documentation around taxonomy page and index generation. [#1207](https://github.com/mmistakes/minimal-mistakes/pull/1207)
224
+ * Fix "Posts by tag" grammar in documentation. [#1209](https://github.com/mmistakes/minimal-mistakes/pull/1209)
225
+ * Improve Chinese `date_label` and `minute_read` translations in `ui-text.yml`. [#1205](https://github.com/mmistakes/minimal-mistakes/pull/1205) [#1211](https://github.com/mmistakes/minimal-mistakes/pull/1211)
226
+ * Add note to Quick-Start Guide about GitHub Pages hosting alternatives that allow 3rd party gem themes and Jekyll plugins.
227
+ * Add note to configuration documentation about Cloudflare minification as an alternative to `layout: compress`. [#1217](https://github.com/mmistakes/minimal-mistakes/pull/1217)
228
+ * Show 4 latest posts in "You May Also Enjoy" module when `related: true` and no related posts are found due to `lsi` ([latent semantic indexing](https://en.wikipedia.org/wiki/Latent_semantic_analysis#Latent_semantic_indexing)) being disabled on GitHub Pages. [#554](https://github.com/mmistakes/minimal-mistakes/issues/554)
229
+ * Truncate archive item titles' that overflow with an ellipsis. [#1213](https://github.com/mmistakes/minimal-mistakes/issues/1213)
230
+
231
+ ### Bug Fixes
232
+
233
+ * Fix license URL in README file. [#1189](https://github.com/mmistakes/minimal-mistakes/pull/1189)
234
+ * Reduce amount of blank pages when printing in Chrome. [#1196](https://github.com/mmistakes/minimal-mistakes/issues/1196)
235
+ * Remove `#disqus_thread` duplicate from `comments-providers/disqus.html` as it is already in `comments.html` include. [#1199](https://github.com/mmistakes/minimal-mistakes/issues/1199)
236
+ * Fix Liquid syntax errors in `tag-list.html` and `category-list.html` includes by removing parenthesis in `assign`s. [#1223](https://github.com/mmistakes/minimal-mistakes/issues/1223)
237
+ * Fix Liquid syntax error: "Expected id but found open_square in `"{{ page.[include.id] }}"`" in `gallery` and `feature_row` includes.
238
+ * Fix Liquid syntax error: "Expected end_of_string but found pipe in `"name in __names | sort"`" in `group-by-array` include.
239
+
240
+ ## [4.5.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.1)
241
+
242
+ ### Enhancements
243
+
244
+ * Add Greek and Danish localized UI text strings. [#1159](https://github.com/mmistakes/minimal-mistakes/pull/1159) [#1188](https://github.com/mmistakes/minimal-mistakes/pull/1188)
245
+ * Remove blank YAML Front Matter from JavaScript banner. [#1158](https://github.com/mmistakes/minimal-mistakes/issues/1158)
246
+ * Improve `page` and `archive` layouts to visually center main content and harmonize sidebar widths and placement. [#1166](https://github.com/mmistakes/minimal-mistakes/pull/1166)
247
+ * Increase font-size of code blocks.
248
+ * Reduce indent of nested "table of contents" links.
249
+ * Extend [archive grid view](https://mmistakes.github.io/minimal-mistakes/docs/layouts/) to the right to better fill the page.
250
+ * URL encode title and page URL in social share links. [#1177](https://github.com/mmistakes/minimal-mistakes/pull/1177)
251
+ * Replace old Disqus script with new Universal Embed Code. [#1179](https://github.com/mmistakes/minimal-mistakes/pull/1179)
252
+
253
+ ### Bug Fixes
254
+
255
+ * Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
256
+ * Fix "follow" links `z-index` order to avoid overlapping issues. [#1167](https://github.com/mmistakes/minimal-mistakes/issues/1167)
257
+
258
+ ### Maintenance
259
+
260
+ * Fix typo `words_per_minute` typo in documentation. [#1164](https://github.com/mmistakes/minimal-mistakes/pull/1164)
261
+ * Remove outside and right borders in `table`s.
262
+ * Adjust width of `.sidebar` to match `.sidebar__right`.
263
+ * Add sample documents to ["portfolio" collection](https://mmistakes.github.io/minimal-mistakes/portfolio/) for testing grid view.
264
+ * Fix typo in stylesheets documentation. [#1170](https://github.com/mmistakes/minimal-mistakes/pull/1170)
265
+ * Add note about setting Discourse `server` as a scheme-less URL (eg. `meta.discourse.com` and not `http://meta.discourse.com`) in `_config.yml`. [#1182](https://github.com/mmistakes/minimal-mistakes/issues/1182)
266
+
267
+ ## [4.5.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.0)
268
+
269
+ ### Enhancements
270
+
271
+ * Add scrollbar to sidebars with overflowing content that extends outside the viewport's height. [#706](https://github.com/mmistakes/minimal-mistakes/issues/706)
272
+ * Add missing Spanish UI text strings. [#1118](https://github.com/mmistakes/minimal-mistakes/pull/1118)
273
+ * Update Susy to version 3 and rewrite grid CSS to be more readable.
274
+ * Refactor intro animations into a separate Sass variable `$intro-transition` to allow for customizing. [#1147](https://github.com/mmistakes/minimal-mistakes/pull/1147)
275
+ * Add [**jekyll-data**](https://github.com/ashmaroli/jekyll-data) as a dependency to read data files from theme-gem. [#1131](https://github.com/mmistakes/minimal-mistakes/pull/1131)
276
+ * Add support for customizing header image alternative text through YAML Front Matter. [#1138](https://github.com/mmistakes/minimal-mistakes/pull/1138)
277
+
278
+ ### Bug Fixes
279
+
280
+ * Fix Sass `DEPRECATION WARNING: Passing a string to call()` by [upgrading Susy to version 3](https://github.com/mmistakes/minimal-mistakes/commit/387f8149d6270b876f224a57a07062ffb0647938). [#1114](https://github.com/mmistakes/minimal-mistakes/issues/1114)
281
+ * Fix disappearing author profile links due to tapping the "Follow" button and changing a browser's viewport width to > `$lg`. [#1136](https://github.com/mmistakes/minimal-mistakes/issues/1136)
282
+
283
+ ### Maintenance
284
+
285
+ * Replace reference to "Basically Basic theme" with **Minimal Mistakes**. [#1149](https://github.com/mmistakes/minimal-mistakes/pull/1149)
286
+ * Add documentation for disabling CSS3 animations. [#1150](https://github.com/mmistakes/minimal-mistakes/pull/1150)
287
+ * Update quickstart, installation, and overriding defaults documentation. [#1151](https://github.com/mmistakes/minimal-mistakes/pull/1151)
288
+
289
+ ## [4.4.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.2)
290
+
291
+ ### Enhancements
292
+
293
+ * Add Swedish, Dutch, and Indonesian localized UI text strings. [#996](https://github.com/mmistakes/minimal-mistakes/pull/996) [#1081](https://github.com/mmistakes/minimal-mistakes/pull/1081) [#1101](https://github.com/mmistakes/minimal-mistakes/pull/1101)
294
+ * Add Bitbucket social icon color. [#1009](https://github.com/mmistakes/minimal-mistakes/pull/1009)
295
+ * Add GitLab to author sidebar. [#1050](https://github.com/mmistakes/minimal-mistakes/pull/1050)
296
+ * Add Sass variable for navicon link hover color. [#1089](https://github.com/mmistakes/minimal-mistakes/pull/1089) [#1088](https://github.com/mmistakes/minimal-mistakes/pull/1088)
297
+
298
+ ### Bug Fixes
299
+
300
+ * Toggle close button on `mouseleave`. [#975](https://github.com/mmistakes/minimal-mistakes/issues/975)
301
+ * Remove extraneous `</a>` and `</li>` tags from `paginator.html` include. [#1038](https://github.com/mmistakes/minimal-mistakes/pull/1038)
302
+ * Fix Google+ comments provider includes. [#1092](https://github.com/mmistakes/minimal-mistakes/issues/1092)
303
+ * Replace category variable used in `_includes/breadcrumbs.html` to `site.category_archive` to avoid conflicts with `site.categories`. [#1063](https://github.com/mmistakes/minimal-mistakes/pull/1063) [#329](https://github.com/mmistakes/minimal-mistakes/issues/329)
304
+
305
+ ### Maintenance
306
+
307
+ * Add mention of Greek localized UI text strings to theme documentation. [#972](https://github.com/mmistakes/minimal-mistakes/pull/972)
308
+ * Update Greek localized UI text strings. [#1054](https://github.com/mmistakes/minimal-mistakes/pull/1054)
309
+ * Add documentation for adding teaser images in grid view using `header.teaser`.
310
+
311
+ ## [4.4.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.1)
312
+
313
+ ### Enhancements
314
+
315
+ * Add Greek localized UI text strings. [#958](https://github.com/mmistakes/minimal-mistakes/pull/958)
316
+
317
+ ### Bug Fixes
318
+
319
+ * Fix `video` helper to load Vimeo videos over https. [#945](https://github.com/mmistakes/minimal-mistakes/pull/945)
320
+ * Fix close menu button that was removed when updating Greedy navigation script. [#969](https://github.com/mmistakes/minimal-mistakes/issues/969)
321
+
322
+ ## [4.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.0)
323
+
324
+ ### Enhancements
325
+
326
+ * Move SCSS partials to `/_sass/minimal-mistakes` for easier CSS customization.
327
+ * Replace `modified` with `last_modified_at` to leverage various Jekyll plugins that utilize this variable. [#930](https://github.com/mmistakes/minimal-mistakes/pull/930)
328
+ * Add Lithuanian localized UI text. [#924](https://github.com/mmistakes/minimal-mistakes/pull/924)
329
+ * Improve print stylesheet by increasing text contrast, removing elements that don't need to be printed, expanding URLs, and reducing amount of blank pages. [#909](https://github.com/mmistakes/minimal-mistakes/issues/909)
330
+
331
+ ### Maintenance
332
+
333
+ * Remove extra word in comment. [#911](https://github.com/mmistakes/minimal-mistakes/pull/911)
334
+ * Fix typo in Utility Class docs. [#915](https://github.com/mmistakes/minimal-mistakes/pull/915)
335
+
336
+ ## [4.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.1)
337
+
338
+ ### Bug Fixes
339
+
340
+ * Fix `.masthead` and `.page__footer` overlapping full screen video elements. [#933](https://github.com/mmistakes/minimal-mistakes/issues/933)
341
+ * Correctly show Related Posts heading when UI Text data file is omitted and `related: true` in YAML Front Matter. [#901](https://github.com/mmistakes/minimal-mistakes/pull/901)
342
+
343
+ ## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
344
+
345
+ ### Enhancements
346
+
347
+ * Add workaround to allow theme gem's `/assets/js/main.min.js` file to be overridden by a local version. Simply add the following YAML Front Matter to the file:
348
+
349
+ ```
350
+ ---
351
+ layout:
352
+ ---
353
+ ```
354
+
355
+ Any local customizations you make to `/assets/js/main.min.js` should now replace the theme gem's version.
356
+
357
+ ## [4.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.2)
358
+
359
+ ### Enhancements
360
+
361
+ * Update [Greedy Navigation](https://github.com/lukejacksonn/GreedyNav) to flexbox version to make it more flexible when dealing with long site titles (`site.title`). [#836](https://github.com/mmistakes/minimal-mistakes/issues/836)
362
+ * Adjust `box-shadow` in navigation and author sidebar. [#576](https://github.com/mmistakes/minimal-mistakes/pull/576)
363
+ * Add Russian, Korean, and zh-TW localized UI text. [#815](https://github.com/mmistakes/minimal-mistakes/issues/815) [#834](https://github.com/mmistakes/minimal-mistakes/pull/834) [#838](https://github.com/mmistakes/minimal-mistakes/pull/838)
364
+
365
+ ### Bug Fixes
366
+
367
+ * Fix Discourse embedded comments bug. [#823](https://github.com/mmistakes/minimal-mistakes/issues/823)
368
+ * Fix `seo_author` default value in `seo.html` and add `author` meta. [#858](https://github.com/mmistakes/minimal-mistakes/pull/858)
369
+
370
+ ### Maintenance
371
+
372
+ * Add theme meta info to `_layouts/default.html` and `main.css`.
373
+ * Update README.
374
+ * Improve the pagination and taxonomy archive documentation. [#826](https://github.com/mmistakes/minimal-mistakes/pull/826)
375
+ * Add comments to `/docs/_config.yml` to clarify use of YAML references. [#847](https://github.com/mmistakes/minimal-mistakes/pull/847)
376
+
377
+ ## [4.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.1)
378
+
379
+ ### Enhancements
380
+
381
+ * Improve `paginator.html` to support paginated pages that live inside of a subfolder. See [documentation](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#home-page) for more details. [#764](https://github.com/mmistakes/minimal-mistakes/pull/764/)
382
+
383
+ ### Maintenance
384
+
385
+ * Add `https` protocol to Google Universal Analytics embed. [#772](https://github.com/mmistakes/minimal-mistakes/pull/772)
386
+
387
+ ## [4.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.0)
388
+
389
+ ### Enhancements
390
+
391
+ * Add `video` helper (for YouTube/Vimeo) and video headers to `single`, `archive`, and `splash` layouts. [#788](https://github.com/mmistakes/minimal-mistakes/pull/788)
392
+ * Add missing simplified Chinese localized UI text strings. [#747](https://github.com/mmistakes/minimal-mistakes/pull/747)
393
+ * Add Nepali (Nepalese) localized UI text strings. [#785](https://github.com/mmistakes/minimal-mistakes/pull/785)
394
+ * Remove borders from table elements found in Google Custom Search Engine widget. [#759](https://github.com/mmistakes/minimal-mistakes/issues/759)
395
+
396
+ ### Bug Fixes
397
+
398
+ * Remove `position: sticky` JavaScript polyfill and fallback to default positioning for browsers that don't support it. [#752](https://github.com/mmistakes/minimal-mistakes/issues/752)
399
+
400
+ ### Maintenance
401
+
402
+ * Fix invalid Google Universal Analytics example in documentation. [#783](https://github.com/mmistakes/minimal-mistakes/pull/783)
403
+ * Bump `jekyll-sitemap` gem dependency to (1.0).
404
+
405
+ ## [4.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.1)
406
+
407
+ ### Enhancements
408
+
409
+ * Remove hardcoded `words_per_minute` "less than" and "minute read" values and make dynamic. [#703](https://github.com/mmistakes/minimal-mistakes/issues/703)
410
+ * Update Font Awesome to `v4.7.0`. [#723](https://github.com/mmistakes/minimal-mistakes/issues/723), [#722](https://github.com/mmistakes/minimal-mistakes/issues/722)
411
+ * Add support for YouTube channel URLs in author profile. [#716](https://github.com/mmistakes/minimal-mistakes/issues/716)
412
+
413
+ ### Bug Fixes
414
+
415
+ * Add Jekyll as `spec.add_runtime_dependency` in `.gemspec`.
416
+
417
+ ## [4.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.0)
418
+
419
+ ### Enhancements
420
+
421
+ * Add Jekyll include for adding [custom author profile links](https://github.com/mmistakes/minimal-mistakes/blob/master/_includes/author-profile-custom-links.html) to sidebar
422
+
423
+ ### Bug Fixes
424
+
425
+ * Fix link to Discourse.org homepage in `noscript` section [#699](https://github.com/mmistakes/minimal-mistakes/pull/699)
426
+ * Fix padding issue with pagination buttons [#694](https://github.com/mmistakes/minimal-mistakes/issues/694)
427
+
428
+ ## [4.0.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.10)
429
+
430
+ ### Bug Fixes
431
+
432
+ * Add Staticman default `path`. [#683](https://github.com/mmistakes/minimal-mistakes/issues/683)
433
+
434
+ ### Maintenance
435
+
436
+ * Slight correction/improvements to French UI text. [#685](https://github.com/mmistakes/minimal-mistakes/pull/685)
437
+
438
+ ## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9)
439
+
440
+ ### Bug Fixes
441
+
442
+ * Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668)
443
+
444
+ ## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8)
445
+
446
+ ### Bug Fixes
447
+
448
+ * Set default value for `words_per_minute`. [#657](https://github.com/mmistakes/minimal-mistakes/issues/657)
449
+ * Adjust sidebar navigation list CSS so it collapses at the correct width.
450
+
451
+ ### Maintenance
452
+
453
+ * Add Google AdSense banner to `/docs/_layouts/default.html` for demo site.
454
+
455
+ ## [4.0.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.7)
456
+
457
+ ### Enhancements
458
+
459
+ * Add `!default` values to **\_sass/\_variables.scss**.
460
+ * Collapse sidebar navigation lists on smaller screens. [#607](https://github.com/mmistakes/minimal-mistakes/issues/607)
461
+
462
+ ### Bug Fixes
463
+
464
+ * Rename `#comments` to something more unique to avoid clashes with Kramdown generated headline IDs. [#582](https://github.com/mmistakes/minimal-mistakes/issues/582)
465
+
466
+ ### Maintenance
467
+
468
+ * Reorganize SCSS partials in **assets/css/main.scss**
469
+
470
+ ## [4.0.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.6)
471
+
472
+ ### Enhancements
473
+
474
+ * Add [`figure` helper](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#figure) to make generating a `<figure>` element with a single image and caption easier. [#572](https://github.com/mmistakes/minimal-mistakes/pull/572)
475
+ * Add structured data markup for `itemprop="person"` in author profile sidebar. [#647](https://github.com/mmistakes/minimal-mistakes/pull/647)
476
+
477
+ ### Bug Fixes
478
+
479
+ * Fix improper YAML formatting of some locales. [#651](https://github.com/mmistakes/minimal-mistakes/pull/651)
480
+
481
+ ### Maintenance
482
+
483
+ * Clarify "migrating to gem-theme" instructions in **Quick Start Guide**.
484
+ * Add `rake preview` task for testing `/test` during theme development.
485
+
486
+ ## [4.0.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5)
487
+
488
+ ### Enhancements
489
+
490
+ * Update gems: `jekyll-sitemap` (0.12), `jekyll-feed` (0.8).
491
+ * Improve next/previous pager links visibility by changing gray color to blue (`$link-color`).
492
+
493
+ ### Bug Fixes
494
+
495
+ * Fix `.sidebar` flicker/jump when hovered. [#583](https://github.com/mmistakes/minimal-mistakes/issues/583)
496
+
497
+ ### Maintenance
498
+
499
+ * Move contents of `gh-pages` branch to `master` inside of the `/docs` folder.
500
+
501
+ ## [4.0.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4)
502
+
503
+ ### Enhancements
504
+
505
+ * "Gemify" theme ~> `gem "minimal-mistakes-jekyll"`
506
+ * Replace `base_path` include with `absolute_url` filter where possible.
507
+ * 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.**
508
+ * Add [home `layout`](https://github.com/mmistakes/minimal-mistakes/blob/master/_layouts/home.html)
509
+ * Added missing Turkish translations for UI text. [#621](https://github.com/mmistakes/minimal-mistakes/pull/621)
510
+ * Make author avatar optional in sidebar.
511
+ * Update **/\_includes/seo.html** for meta description. [#558](https://github.com/mmistakes/minimal-mistakes/pull/558)
512
+
513
+ ### Bug Fixes
514
+
515
+ * Fix navigation bar animation "flicker" in Safari [#568](https://github.com/mmistakes/minimal-mistakes/issues/568)
516
+ * Fix `author.avatar` paths for externally hosted images.
517
+
518
+ ### Maintenance
519
+
520
+ * Add documentation around `gem "minimal-mistakes-jekyll"` installation and use.
521
+ * 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/`.
522
+ * Add "[Overriding Theme Defaults](https://mmistakes.github.io/minimal-mistakes/docs/overriding-theme-defaults/)" page to documentation.
523
+
524
+ ## [3.4.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.8)
525
+
526
+ ### Enhancements
527
+
528
+ * Improve type readability for larger viewports by bumping up base `font-size`. [#533](https://github.com/mmistakes/minimal-mistakes/issues/533)
529
+ * Update Portuguese localized UI text. [#541](https://github.com/mmistakes/minimal-mistakes/pull/541)
530
+ * Add `page.title` and via parameter to Twitter share link. [#538](https://github.com/mmistakes/minimal-mistakes/pull/538)
531
+
532
+ ### Bug Fixes
533
+
534
+ * Fix Last.fm author profile URL. [#540](https://github.com/mmistakes/minimal-mistakes/pull/540)
535
+
536
+ ### Maintenance
537
+
538
+ * Move Brazilian Portuguese localized text under `pt-BR` key.
539
+
540
+ ## [3.4.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.7)
541
+
542
+ ### Enhancements
543
+
544
+ * Add `layout` based and user-defined class names to `<body>` element for added CSS hooks. [#526](https://github.com/mmistakes/minimal-mistakes/pull/526)
545
+ * Add simplified Chinese localized UI text. [#532](https://github.com/mmistakes/minimal-mistakes/pull/532)
546
+
547
+ ### Bug Fixes
548
+
549
+ * Remove duplicate include of `base_path` in category-list.html [#522](https://github.com/mmistakes/minimal-mistakes/pull/522)
550
+
551
+ ## [3.4.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.6)
552
+
553
+ ### Enhancements
554
+
555
+ * Add Italian "comments" related localized UI text. [#514](https://github.com/mmistakes/minimal-mistakes/pull/514)
556
+
557
+ ### Bug Fixes
558
+
559
+ * Disable `compress` HTML layout by default. To enable add `layout: compress` to `_layouts/default.html`.
560
+
561
+ ## [3.4.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.5)
562
+
563
+ ### Enhancements
564
+
565
+ * Improve line numbered code block styling when using `{% highlight linenos %}` tag. [#513](https://github.com/mmistakes/minimal-mistakes/issues/513)
566
+ * Add English fallback to "Follow" button label. [#496](https://github.com/mmistakes/minimal-mistakes/pull/496)
567
+
568
+ ### Bug Fixes
569
+
570
+ * Fix Firefox alignment issues with code blocks generated with the `{% highlight %}` tag. [#512](https://github.com/mmistakes/minimal-mistakes/issues/512)
571
+
572
+ ### Maintenance
573
+
574
+ * Clarified comment for `author.stackoverflow` value used in author sidebar links. [#487](https://github.com/mmistakes/minimal-mistakes/pull/487)
575
+ * Add list of localized text strings. [#488](https://github.com/mmistakes/minimal-mistakes/pull/488)
576
+ * Add `{% highlight %}` code block examples to demo site.
577
+ * Add documentation for using custom sidebar navigation menus. [#476](https://github.com/mmistakes/minimal-mistakes/issues/476)
578
+
579
+ ## [3.4.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.4)
580
+
581
+ ### Enhancements
582
+
583
+ * Add French "comments" related localized UI text. [#472](https://github.com/mmistakes/minimal-mistakes/pull/472)
584
+
585
+ ### Bug Fixes
586
+
587
+ * Exclude `vendor` in Jekyll config file.
588
+ * Fix Liquid syntax error for offending parenthesis. [#479](https://github.com/mmistakes/minimal-mistakes/issues/479)
589
+
590
+ ### Maintenance
591
+
592
+ * Update gems: `colorator` (1.1.0), `forwardable-extended` (2.6.0), `github-pages` (93), `jekyll` (= 3.2.1), `minima` (= 1.0.1).
593
+
594
+ ## [3.4.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.3)
595
+
596
+ ### Enhancements
597
+
598
+ * Make ["honeypot" `input`](https://github.com/mmistakes/minimal-mistakes/commit/06a8249a69a37dddda7e2a5bfbe32056c1a9a607) in Staticman comment form less obvious to spam bots
599
+ * Add padding to `.highlight` code blocks to better [align `overflow` scrollbar](https://github.com/mmistakes/minimal-mistakes/commit/e4abec0a6f7f8cff72505ca0754615df294fd5b3) to the bottom.
600
+ * Add additional image options for Twitter card social sharing meta tags. [#466](https://github.com/mmistakes/minimal-mistakes/pull/466)
601
+ * Add structured data markup for Staticman comments. [#458](https://github.com/mmistakes/minimal-mistakes/issues/458)
602
+
603
+ ### Bug Fixes
604
+
605
+ * Format `og:locale` tag with `_` instead of `-`. [#462](https://github.com/mmistakes/minimal-mistakes/issues/462)
606
+
607
+ ### Maintenance
608
+
609
+ * Add note to docs about using `url: http://localhost:4000` when working locally.
610
+
611
+ ## [3.4.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.2)
612
+
613
+ ### Enhancements
614
+
615
+ * Improve UX of static comment forms. [#448](https://github.com/mmistakes/minimal-mistakes/issues/448)
616
+
617
+ ## [3.4.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.1)
618
+
619
+ ### Enhancements
620
+
621
+ * Add `staticman.filename` configuration with UNIX timestamp for sorting data files. example ~> `comment-1470943149`.
622
+
623
+ ### Bug Fixes
624
+
625
+ * Don't add `<a>` to author name if URL is blank.
626
+
627
+ ## [3.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.0)
628
+
629
+ ### Enhancements
630
+
631
+ * Support static-based commenting via [Staticman](https://staticman.net/) for sites hosted with GitHub Pages. [#424](https://github.com/mmistakes/minimal-mistakes/issues/424)
632
+
633
+ ## [3.3.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.7)
634
+
635
+ ### Bug Fixes
636
+
637
+ * Re-enabled Jekyll plugins in `_config.yml` in case they aren't autoloaded in `Gemfile`. [#417](https://github.com/mmistakes/minimal-mistakes/issues/417)
638
+
639
+ ### Enhancements
640
+
641
+ * Fallback to `site.github.url` for use in `{{ base_path }}` when `site.url` is `nil`.
642
+ * Replace Sass and Autoprefixer `npm` build scripts with [Jekyll's built-in asset support](https://jekyllrb.com/docs/assets/). [#333](https://github.com/mmistakes/minimal-mistakes/issues/333)
643
+
644
+ ### Maintenance
645
+
646
+ * Document `site.repository` and its role with [`github-metadata`](https://github.com/jekyll/github-metadata) gem.
647
+ * Add sample [archive page with content](https://mmistakes.github.io/minimal-mistakes/archive-layout-with-content/) for testing styles on demo site.
648
+
649
+ ## [3.3.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.6)
650
+
651
+ ### Bug Fixes
652
+
653
+ * Fix blank `site.teaser` bug. [#412](https://github.com/mmistakes/minimal-mistakes/issues/412)
654
+
655
+ ## [3.3.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.5)
656
+
657
+ ### Enhancements
658
+
659
+ * Add English default text `site.locale` strings. [#407](https://github.com/mmistakes/minimal-mistakes/issues/407)
660
+ * Add Portuguese localized UI text. [#411](https://github.com/mmistakes/minimal-mistakes/pull/411)
661
+ * Add Italian localized UI text. [#409](https://github.com/mmistakes/minimal-mistakes/pull/409)
662
+
663
+ ### Maintenance
664
+
665
+ * Remove unused Google AdSense variables in `_config.yml`. [#404](https://github.com/mmistakes/minimal-mistakes/issues/404)
666
+ * Update `Gemfile` instructions for using `github-pages` vs. native `jekyll` gems.
667
+ * Disable `gems:` in `_config.yml` and enable plugins with Bundler instead.
668
+ * Add `repository` to `_config.yml` to suppress GitHub Pages error `Liquid Exception: No repo name found.`
669
+
670
+ ## [3.3.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.4)
671
+
672
+ ### Enhancements
673
+
674
+ * Add support for configurable feed URL to use a service like FeedBurner instead of linking directly to `feed.xml` in `<head>` and the site footer. [#378](https://github.com/mmistakes/minimal-mistakes/issues/378), [#379](https://github.com/mmistakes/minimal-mistakes/pull/379), [#406](https://github.com/mmistakes/minimal-mistakes/pull/406)
675
+ * Add Turkish localized UI text. [#403](https://github.com/mmistakes/minimal-mistakes/pull/403)
676
+
677
+ ### Maintenance
678
+
679
+ * Update gems: `activesupport` (4.2.7), `ffi` (1.9.14), `github-pages` (88), `jekyll-redirect-from` (0.11.0), `jekyll-watch` (1.5.0).
680
+
681
+ ## [3.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.3)
682
+
683
+ ### Enhancements
684
+
685
+ * Make footer stick to the bottom of the page.
686
+
687
+ ### Bug Fixes
688
+
689
+ * Fix `gallery` size bug [#402](https://github.com/mmistakes/minimal-mistakes/issues/402)
690
+
691
+ ### Maintenance
692
+
693
+ * Set default `lang` to `en`.
694
+
695
+ ## [3.3.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.2)
696
+
697
+ ### Bug Fixes
698
+
699
+ * Fix JavaScript that triggers "sticky" sidebar to avoid layout issues on screen sizes < `1024px`. [#396](https://github.com/mmistakes/minimal-mistakes/issues/396)
700
+
701
+ ## [3.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.1)
702
+
703
+ ### Enhancements
704
+
705
+ * Enable image popup on < 500px wide screens. [#385](https://github.com/mmistakes/minimal-mistakes/issues/385)
706
+ * Indicate the relationship between component URLs in a paginated series by applying `rel="prev"` and `rel="next"` to pages that use `site.paginator`. [#253](https://github.com/mmistakes/minimal-mistakes/issues/253)
707
+ * Improve link posts in archive listings. [#276](https://github.com/mmistakes/minimal-mistakes/issues/276)
708
+
709
+ ### Maintenance
710
+
711
+ * Update gems: `github-pages` (86), `ffi` 1.9.13, `jekyll-mentions` 1.1.3, and `rouge` 1.11.1
712
+ * Fix note about custom sidebar content appearing below author profile. [#388](https://github.com/mmistakes/minimal-mistakes/issues/388)
713
+
714
+ ## [3.2.13](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.13)
715
+
716
+ ### Enhancements
717
+
718
+ * Add English default UI text for Canada, Great Britain, and Australia. [#377](https://github.com/mmistakes/minimal-mistakes/issues/377)
719
+ * Switch default locale from `en-US` to `en`.
720
+
721
+ ## [3.2.12](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.12)
722
+
723
+ ### Enhancements
724
+
725
+ * Remove window width "magic number" from sticky sidebar check in `main.js` for improved flexibility. [#375](https://github.com/mmistakes/minimal-mistakes/pull/375)
726
+
727
+ ### Bug Fixes
728
+
729
+ * Fix author override conditional where a missing `authors.yml` would show broken sidebar content. Defaults to `site.author`. [#376](https://github.com/mmistakes/minimal-mistakes/pull/376)
730
+
731
+ ## [3.2.11](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.11)
732
+
733
+ ### Bug Fixes
734
+
735
+ * Fix disappearing author sidebar links [#372](https://github.com/mmistakes/minimal-mistakes/issues/372)
736
+
737
+ ### Maintenance
738
+
739
+ * Update gems: `github-pages` (84), `jekyll-github-metadata` 2.0.2, and `kramdown` 1.11.1
740
+ * Update vendor JavaScript: jQuery 1.12.4, Stickyfill.js 1.1.4
741
+ * Update Font Awesome 4.6.3
742
+
743
+ ## [3.2.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.10)
744
+
745
+ ### Maintenance
746
+
747
+ * Add `CONTRIBUTING.md`
748
+
749
+ ## [3.2.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.9)
750
+
751
+ ### Enhancements
752
+
753
+ * Add support for [header overlay images](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#header-overlay) for Open Graph images. [#358](https://github.com/mmistakes/minimal-mistakes/pull/358)
754
+
755
+ ### Bug Fixes
756
+
757
+ * Fix `Person` typo Schema.org type [#358](https://github.com/mmistakes/minimal-mistakes/pull/358)
758
+
759
+ ### Maintenance
760
+
761
+ * Update `github-pages` gem and dependencies.
762
+ * Remove `minutes_read` to avoid awkward reading time wording [#356](https://github.com/mmistakes/minimal-mistakes/issues/356)
763
+
764
+ ## [3.2.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.8)
765
+
766
+ ### Bug Fixes
767
+
768
+ * Remove `cursor: pointer` that appears on white-space surrounding author side list items and links. [#354](https://github.com/mmistakes/minimal-mistakes/pull/354)
769
+
770
+ ### Maintenance
771
+
772
+ * Add contributing information to `README.md`. [#357](https://github.com/mmistakes/minimal-mistakes/issues/357)
773
+
774
+ ## [3.2.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.7)
775
+
776
+ ### Enhancements
777
+
778
+ * Add French localized UI text. [#346](https://github.com/mmistakes/minimal-mistakes/pull/346)
779
+
780
+ ### Bug Fixes
781
+
782
+ * Fix branch logic for Yandex and Alexa in `seo.html`. [#348](https://github.com/mmistakes/minimal-mistakes/pull/348)
783
+
784
+ ## [3.2.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.6)
785
+
786
+ ### Bug Fixes
787
+
788
+ * Fix error `Liquid Exception: divided by 0 in _includes/archive-single.html, included in _layouts/single.html` caused by null `words_per_minute` in `_config.yml`. [#345](https://github.com/mmistakes/minimal-mistakes/pull/345)
789
+
790
+ ## [3.2.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.5)
791
+
792
+ ### Bug Fixes
793
+
794
+ * Fix link color in hero overlay to be white.
795
+ * Remove underlines from archive item titles.
796
+
797
+ ## [3.2.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.4)
798
+
799
+ ### Enhancements
800
+
801
+ * Improve text alignment of masthead, hero overlay, page footer to be flush left and remove awkward white-space gaps. [#342](https://github.com/mmistakes/minimal-mistakes/issues/342)
802
+ * Add Spanish localized UI text. [#338](https://github.com/mmistakes/minimal-mistakes/pull/338)
803
+
804
+ ### Bug Fixes
805
+
806
+ * Fix alignment of icons in author sidebar [#341](https://github.com/mmistakes/minimal-mistakes/issues/341)
807
+
808
+ ### Maintenance
809
+
810
+ * Add background color to page footer to set it apart from main content. [#342](https://github.com/mmistakes/minimal-mistakes/issues/342)
811
+ * Add terms and privacy policy to theme's demo site. [#343](https://github.com/mmistakes/minimal-mistakes/issues/343)
812
+ * Update screenshots found in theme documentation.
813
+
814
+ ## [3.2.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.3)
815
+
816
+ ### Enhancements
817
+
818
+ * Add [Discourse](https://www.discourse.org/) as a commenting provider. [#335](https://github.com/mmistakes/minimal-mistakes/pull/335)
819
+
820
+ ## [3.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.2)
821
+
822
+ ### Enhancements
823
+
824
+ * Add support for image captions in Magnific Popup overlays via the [`gallery`](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery) helper. [#334](https://github.com/mmistakes/minimal-mistakes/issues/334)
825
+
826
+ ## [3.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.1)
827
+
828
+ ### Bug Fixes
829
+
830
+ * Remove need for "double tapping" masthead menu links on iOS devices. [#315](https://github.com/mmistakes/minimal-mistakes/issues/315)
831
+
832
+ ### Maintenance
833
+
834
+ * Add `ISSUE_TEMPLATE.md` for improve issue submission process.
835
+
836
+ ## [3.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.0)
837
+
838
+ ### Bug Fixes
839
+
840
+ * Fix missing category/tag links in post footer due to possible conflict with `site.tags` and `site.categories`. [#329](https://github.com/mmistakes/minimal-mistakes/issues/329#issuecomment-222375568)
841
+
842
+ ## [3.1.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.8)
843
+
844
+ ### Bug Fixes
845
+
846
+ * Fix `Liquid Exception: undefined method 'gsub' for nil:NilClass in _layouts/single.html` error when `page.title` is null. `<h1>` element is now conditional if `title:` is not set for a `page` or collection item. [#312](https://github.com/mmistakes/minimal-mistakes/issues/312)
847
+
848
+ ### Maintenance
849
+
850
+ * Remove duplicate `fa-twitter` and `fa-twitter-square` classes from `_utilities.scss`. [#302](https://github.com/mmistakes/minimal-mistakes/issues/302)
851
+
852
+ * Document installing additional Jekyll gem dependencies when using `gem "jekyll"` instead of `gem "github-pages"` to avoid any errors on run. [#305](https://github.com/mmistakes/minimal-mistakes/issues/305)
853
+
854
+ ## [3.1.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.7)
855
+
856
+ ### Enhancements
857
+
858
+ * Add translation key for "Recent Posts" used in home page `index.html`. [#316](https://github.com/mmistakes/minimal-mistakes/pull/316)
859
+
860
+ ### Maintenance
861
+
862
+ * Small fix to avoid underlying the whitespace between icons and related text when hovering. [#303](https://github.com/mmistakes/minimal-mistakes/pull/303)
863
+
864
+ ## [3.1.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.6)
865
+
866
+ ### Maintenance
867
+
868
+ * Update gem dependencies. Run `bundle` to update `Gemfile.lock`.
869
+
870
+ ## [3.1.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.5)
871
+
872
+ ### Maintenance
873
+
874
+ * Fix `www` and `https` links in author profile include [#293](https://github.com/mmistakes/minimal-mistakes/pull/293)
875
+
876
+ ## [3.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.4)
877
+
878
+ ### Enhancements
879
+
880
+ * Add overlay_filter param to hero headers [#298](https://github.com/mmistakes/minimal-mistakes/pull/298)
881
+
882
+ ## [3.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.3)
883
+
884
+ ### Enhancements
885
+
886
+ * Improve `site.locale` documentation [#284](https://github.com/mmistakes/minimal-mistakes/issues/284)
887
+ * Remove ProTip note about protocol-less `site.url` as it is an anti-pattern [#288](https://github.com/mmistakes/minimal-mistakes/issues/288)
888
+
889
+ ### Bug Fixes
890
+
891
+ * Fix `og_image` URL in seo.html [#277](https://github.com/mmistakes/minimal-mistakes/issues/277)
892
+ * Fix `author_profile` toggle when assigned in a `_layout` [#285](https://github.com/mmistakes/minimal-mistakes/issues/285)
893
+ * Fix typo in `build:all` npm script [#283](https://github.com/mmistakes/minimal-mistakes/pull/283)
894
+ * Fix URL typo documentation [#287](https://github.com/mmistakes/minimal-mistakes/issues/287)
895
+ * SEO author bug. If `twitter.username` is set and `author.twitter` is `nil` bad things happen. [#289](https://github.com/mmistakes/minimal-mistakes/issues/289)
896
+
897
+ ## [3.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.2)
898
+
899
+ ### Enhancements
900
+
901
+ * Explain how to use `nav_list` helper in [documentation](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list).
902
+ * Reduce left/right padding on smaller screens to increase width of main content column.
903
+
904
+ ### Bug Fixes
905
+
906
+ * Fix alignment issues with related posts [#273](https://github.com/mmistakes/minimal-mistakes/issues/273) and "Follow" button in author profile [#274](https://github.com/mmistakes/minimal-mistakes/issues/274).
907
+
908
+ ## [3.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.1)
909
+
910
+ ### Bug Fix
911
+
912
+ * Fixed reading time bug when `words_per_minute` wasn't set in `_config.yml` [#271](https://github.com/mmistakes/minimal-mistakes/issues/271)
913
+
914
+ ## [3.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.0)
915
+
916
+ ### Enhancements
917
+
918
+ * Updated [Font Awesome](https://fortawesome.github.io/Font-Awesome/whats-new/) to version 4.6.1
919
+ * Added optional GitHub and Bitbucket links to footer if set on `site.author` in `_config.yml`.
920
+
921
+ ### Bug Fixes
922
+
923
+ * Fixed Bitbucket URL typo in author sidebar.
924
+
925
+ ## [3.0.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.0.3)
926
+
927
+ ### Enhancements
928
+
929
+ * Rebuilt the entire theme: layouts, includes, stylesheets, scripts, you name it.
930
+ * Refreshed the look and feel while staying true to the original design of the theme (author sidebar/main content).
931
+ * Replaced grid system with [Susy](http://susy.oddbird.net/).
932
+ * Replaced Grunt tasks with `npm` scripts.
933
+ * Removed Google Fonts and replaced with system fonts to improve performance (they can be [added back](https://mmistakes.github.io/minimal-mistakes/docs/stylesheets/) if desired)
934
+ * Greatly improved [theme documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
935
+ * Increased the amount of sample posts, sample pages, and sample collections to throughly test the theme and edge-cases.
936
+ * Moved all sample content and assets out of `master` to keep it as clean as possible for forking.
937
+ * Added new layouts for `splash` pages, archives for [`jekyll-archives`](https://github.com/jekyll/jekyll-archives) if enabled, and [`compress.html`](https://github.com/penibelst/jekyll-compress-html) to improve performance.
938
+ * Added taxonomy links to posts (tags and categories).
939
+ * Added optional "reading time" meta data.
940
+ * Improved Liquid used for Twitter Cards and Open Graph data in `<head>`.
941
+ * Improved `gallery` include helper and added `feature_row` for use with splash page layout.
942
+ * Added Keybase.io, author web URI, and Bitbucket optional links to sidebar.
943
+ * Add `feed.xml` link to footer.
944
+ * Added a [UI text data file](https://mmistakes.github.io/minimal-mistakes/docs/ui-text/) to easily change all text found in the theme.
945
+ * Added LinkedIn to optional social share buttons.
946
+ * Added Facebook, Google+, and custom commenting options in addition to Disqus.
947
+ * Added optional breadcrumb links.
948
+
949
+ ## [2.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.1)
950
+
951
+ ## [2.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.0)
952
+
953
+ ### Enhancements
954
+
955
+ * Add support for Jekyll 3.0
956
+ * Minor updates to syntax highlighting CSS and theme documentation
957
+
958
+ ## [2.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.3)
959
+
960
+ ### Enhancements
961
+
962
+ * Cleaner print styles that remove the top navigation, social sharing buttons, and other elements not needed when printed.
963
+
964
+ ## [2.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.2)
965
+
966
+ ### Enhancements
967
+
968
+ * Add optional CodePen icon/url to author side bar [#156](https://github.com/mmistakes/minimal-mistakes/pull/156)
969
+ * Documented Stackoverflow username explanation in `_config.yml` [#157](https://github.com/mmistakes/minimal-mistakes/pull/157)
970
+ * Simplified Liquid in `post-index.html` to better handle year listings [#166](https://github.com/mmistakes/minimal-mistakes/pull/166)
971
+
972
+ ### Bug Fixes
973
+
974
+ * Cleanup Facebook related Open Graph meta tags [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
975
+ * Corrected minor typos [#158](https://github.com/mmistakes/minimal-mistakes/pull/158) [#175](https://github.com/mmistakes/minimal-mistakes/issues/175)
976
+
977
+ ## [2.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.1)
978
+
979
+ ### Enhancements
980
+
981
+ * Add optional XING profile link to author sidebar
982
+ * Include open graph meta tags for feature image (if assigned) [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
983
+ * Create an include for feed footer
984
+
985
+ ### Bug Fixes
986
+
987
+ * Remove http protocol from Google search form on sample 404 page
988
+ * Only show related posts if there are one or more available
989
+ * Fix alignment of email address link in author sidebar
990
+
991
+ ## [2.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.0)
992
+
993
+ ### Enhancements
994
+
995
+ * Add optional social sharing buttons ([#42](https://github.com/mmistakes/minimal-mistakes/issues/42))
996
+
997
+ ![social sharing buttons](https://cloud.githubusercontent.com/assets/1376749/5860522/d9f28a96-a22f-11e4-9b83-940a3a9a766a.png)
998
+
999
+ * Add Soundcloud, YouTube ([#95](https://github.com/mmistakes/minimal-mistakes/pull/95)), Flickr ([#119](https://github.com/mmistakes/minimal-mistakes/pull/119)), and Weibo ([#116](https://github.com/mmistakes/minimal-mistakes/pull/116)) icons for use in author sidebar.
1000
+ * Fix typos in posts and documentation and remove references to Less
1001
+ * Include note about Octopress gem being optional
1002
+ * Post author override support extended to the Atom feed ([#71](https://github.com/mmistakes/minimal-mistakes/pull/71))
1003
+ * Only include email address in feed if specified in `_config.yml` or author `_data`
1004
+ * Wrap all page content in `#main` to harmonize article and post index styles ([#86](https://github.com/mmistakes/minimal-mistakes/issues/86))
1005
+ * Include new sample feature images for posts and pages
1006
+ * Table of contents improvements: fix collapse toggle, indent nested elements, show on small screens, and create an `_include` for reusing in posts and pages.
1007
+ * Include note about running Jekyll with `bundle exec` when using Bundler
1008
+ * Fix home page path in top navigation
1009
+ * Remove Google Authorship ([#120](https://github.com/mmistakes/minimal-mistakes/issues/120))
1010
+ * Remove duplicate author content that displayed in `div.article-author-bottom`
1011
+ * Removed unused `_sass/print.scss` styles
1012
+ * Improve comments in `.scss` files
1013
+
1014
+ ## [2.0.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/v2.0)
1015
+
1016
+ ## [1.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.3)
1017
+
1018
+ ### Enhancements
1019
+
1020
+ * Added new icons and profile links for Stackoverflow, Dribbble, Pinterest, Foursquare, and Steam to the author bio sidebar.
1021
+ * Cleaned up the Kramdown auto table of contents styling to be more readable
1022
+ * Removed page width specific .less stylesheets and created mixins for easier updating
1023
+ * Removed Modernizr since it wasn't being used
1024
+ * Added pages to sitemap.xml
1025
+ * Added category: to rake new_post task
1026
+ * Minor typographic changes
1027
+
1028
+ ### Bug Fixes
1029
+
1030
+ * Corrected various broken links in README and Theme Setup.
1031
+
1032
+ ## [1.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.1)
1033
+
1034
+ ### Enhancements
1035
+
1036
+ * Cleaned up table of contents styling
1037
+ * Reworked top navigation to be a better experience on small screens. Nav items now display vertically when the menu button is tapped, revealing links with larger touch targets.
1038
+
1039
+ ![menu animation](https://camo.githubusercontent.com/3fbd8c1326485f4b1ab32c0005c0fca7660b5d31/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313337363734392f323136343037352f31653366303663322d393465372d313165332d383961612d6436623636376562306564662e676966)
1040
+
1041
+ ## [1.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.2.0)
1042
+
1043
+ ### Bug Fixes
1044
+
1045
+ * Table weren't filling the entire width of the content container. They now scale at 100%. Thanks [@dhruvbhatia](https://github.com/dhruvbhatia)
1046
+
1047
+ ### Enhancements
1048
+
1049
+ * Decreased spacing between Markdown footnotes
1050
+ * Removed dark background on footer
1051
+ * Removed UPPERCASE styling on post titles in the index listing
1052
+
1053
+ ## [1.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.4)
1054
+
1055
+ ### Bug Fixes
1056
+
1057
+ * Fix top navigation bug issue ([#10](https://github.com/mmistakes/minimal-mistakes/issues/10)) for real this time. Remember to clear your floats kids.
1058
+
1059
+ ## [1.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.3)
1060
+
1061
+ ### Bug Fixes
1062
+
1063
+ * Fix top navigation links that weren't click able on small viewports (Issue [#10](https://github.com/mmistakes/minimal-mistakes/issues/10)).
1064
+ * Remove line wrap from top navigation links that may span multiple lines.
1065
+
1066
+ ## [1.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.2)
1067
+
1068
+ ### Enhancements
1069
+
1070
+ * Added Grunt build script for compiling Less/JavaScript and optimizing image assets.
1071
+ * Added support for large image summary Twitter card.
1072
+ * Stylesheet adjustments
1073
+
1074
+ ## [1.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.1)
1075
+
1076
+ ### Bug Fixes
1077
+
1078
+ * Removed [Typeplate](http://typeplate.com/) styles. Was [causing issues with newer versions of Less](https://github.com/typeplate/typeplate.github.io/issues/108) and is no longer maintained.
1079
+
1080
+ ### Enhancements
1081
+
1082
+ * Added [image attribution](http://mmistakes.github.io/minimal-mistakes/theme-setup/#feature-images) for post and page feature images.
1083
+ * Added [404 page](http://mmistakes.github.io/minimal-mistakes/404.html).
1084
+ * Cleaned up various Less variables to better align with naming conventions used in other MM Jekyll themes.
1085
+ * Removed Chrome Frame references.
1086
+ * Added global CSS3 transitions to text and block elements.
1087
+ * Improved typography in a few places.
1088
+
1089
+ ## [1.0.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.2)
1090
+
1091
+ ### Enhancements
1092
+
1093
+ * Google Analytics, Google Authorship, webmaster verifies, and Twitter card meta are now optional.
1094
+
1095
+ ## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1)