jekyll-theme-woforo 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +690 -0
  3. data/{LICENSE → LICENSE.txt} +5 -5
  4. data/README.md +128 -19
  5. data/_includes/analytics-providers/custom.html +3 -0
  6. data/_includes/analytics-providers/google-universal.html +9 -0
  7. data/_includes/analytics-providers/google.html +11 -0
  8. data/_includes/analytics.html +12 -0
  9. data/_includes/archive-single.html +38 -0
  10. data/_includes/author-profile-custom-links.html +7 -0
  11. data/_includes/author-profile.html +241 -0
  12. data/_includes/base_path +5 -0
  13. data/_includes/breadcrumbs.html +39 -0
  14. data/_includes/browser-upgrade.html +3 -0
  15. data/_includes/category-list.html +26 -0
  16. data/_includes/comment.html +22 -0
  17. data/_includes/comments-providers/custom.html +3 -0
  18. data/_includes/comments-providers/discourse.html +13 -0
  19. data/_includes/comments-providers/disqus.html +22 -0
  20. data/_includes/comments-providers/facebook.html +8 -0
  21. data/_includes/comments-providers/google-plus.html +2 -0
  22. data/_includes/comments-providers/scripts.html +18 -0
  23. data/_includes/comments-providers/staticman.html +42 -0
  24. data/_includes/comments.html +80 -0
  25. data/_includes/feature_row +50 -0
  26. data/_includes/figure +12 -0
  27. data/_includes/footer.html +22 -0
  28. data/_includes/footer/custom.html +3 -0
  29. data/_includes/gallery +47 -0
  30. data/_includes/group-by-array +47 -0
  31. data/_includes/head.html +19 -9
  32. data/_includes/head/custom.html +5 -0
  33. data/_includes/masthead.html +21 -0
  34. data/_includes/nav_list +47 -0
  35. data/_includes/page__hero.html +53 -0
  36. data/_includes/page__taxonomy.html +7 -0
  37. data/_includes/paginator.html +68 -0
  38. data/_includes/post_pagination.html +14 -0
  39. data/_includes/read-time.html +15 -0
  40. data/_includes/scripts.html +4 -0
  41. data/_includes/seo.html +145 -0
  42. data/_includes/sidebar.html +23 -0
  43. data/_includes/social-share.html +13 -0
  44. data/_includes/tag-list.html +26 -0
  45. data/_includes/toc +7 -0
  46. data/_layouts/archive-taxonomy.html +15 -0
  47. data/_layouts/archive.html +24 -0
  48. data/_layouts/compress.html +10 -0
  49. data/_layouts/default.html +25 -5
  50. data/_layouts/home.html +11 -0
  51. data/_layouts/single.html +74 -0
  52. data/_layouts/splash.html +20 -0
  53. data/_sass/_animations.scss +21 -0
  54. data/_sass/_archive.scss +238 -0
  55. data/_sass/_base.scss +315 -0
  56. data/_sass/_buttons.scss +153 -0
  57. data/_sass/_footer.scss +80 -0
  58. data/_sass/_forms.scss +391 -0
  59. data/_sass/_masthead.scss +53 -0
  60. data/_sass/_mixins.scss +53 -0
  61. data/_sass/_navigation.scss +544 -0
  62. data/_sass/_notices.scss +99 -0
  63. data/_sass/_page.scss +401 -0
  64. data/_sass/_print.scss +18 -0
  65. data/_sass/_reset.scss +187 -0
  66. data/_sass/_sidebar.scss +231 -0
  67. data/_sass/_syntax.scss +146 -0
  68. data/_sass/_tables.scss +38 -0
  69. data/_sass/_utilities.scss +470 -0
  70. data/_sass/_variables.scss +128 -0
  71. data/_sass/vendor/breakpoint/_breakpoint.scss +114 -0
  72. data/_sass/vendor/breakpoint/_context.scss +95 -0
  73. data/_sass/vendor/breakpoint/_helpers.scss +151 -0
  74. data/_sass/vendor/breakpoint/_legacy-settings.scss +50 -0
  75. data/_sass/vendor/breakpoint/_no-query.scss +15 -0
  76. data/_sass/vendor/breakpoint/_parsers.scss +215 -0
  77. data/_sass/vendor/breakpoint/_respond-to.scss +82 -0
  78. data/_sass/vendor/breakpoint/_settings.scss +71 -0
  79. data/_sass/vendor/breakpoint/parsers/_double.scss +33 -0
  80. data/_sass/vendor/breakpoint/parsers/_query.scss +82 -0
  81. data/_sass/vendor/breakpoint/parsers/_resolution.scss +31 -0
  82. data/_sass/vendor/breakpoint/parsers/_single.scss +26 -0
  83. data/_sass/vendor/breakpoint/parsers/_triple.scss +36 -0
  84. data/_sass/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  85. data/_sass/vendor/breakpoint/parsers/double/_default.scss +22 -0
  86. data/_sass/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  87. data/_sass/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  88. data/_sass/vendor/breakpoint/parsers/single/_default.scss +13 -0
  89. data/_sass/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  90. data/_sass/vendor/font-awesome/_animated.scss +34 -0
  91. data/_sass/vendor/font-awesome/_bordered-pulled.scss +25 -0
  92. data/_sass/vendor/font-awesome/_core.scss +12 -0
  93. data/_sass/vendor/font-awesome/_fixed-width.scss +6 -0
  94. data/_sass/vendor/font-awesome/_font-awesome.scss +18 -0
  95. data/_sass/vendor/font-awesome/_icons.scss +789 -0
  96. data/_sass/vendor/font-awesome/_larger.scss +13 -0
  97. data/_sass/vendor/font-awesome/_list.scss +19 -0
  98. data/_sass/vendor/font-awesome/_mixins.scss +60 -0
  99. data/_sass/vendor/font-awesome/_path.scss +15 -0
  100. data/_sass/vendor/font-awesome/_rotated-flipped.scss +20 -0
  101. data/_sass/vendor/font-awesome/_screen-reader.scss +5 -0
  102. data/_sass/vendor/font-awesome/_stacked.scss +20 -0
  103. data/_sass/vendor/font-awesome/_variables.scss +800 -0
  104. data/_sass/vendor/magnific-popup/_magnific-popup.scss +649 -0
  105. data/_sass/vendor/magnific-popup/_settings.scss +46 -0
  106. data/_sass/vendor/susy/_su.scss +4 -0
  107. data/_sass/vendor/susy/_susy.scss +4 -0
  108. data/_sass/vendor/susy/_susyone.scss +4 -0
  109. data/_sass/vendor/susy/susy/_su.scss +7 -0
  110. data/_sass/vendor/susy/susy/language/_susy.scss +24 -0
  111. data/_sass/vendor/susy/susy/language/_susyone.scss +13 -0
  112. data/_sass/vendor/susy/susy/language/susy/_background.scss +385 -0
  113. data/_sass/vendor/susy/susy/language/susy/_bleed.scss +200 -0
  114. data/_sass/vendor/susy/susy/language/susy/_box-sizing.scss +47 -0
  115. data/_sass/vendor/susy/susy/language/susy/_breakpoint-plugin.scss +185 -0
  116. data/_sass/vendor/susy/susy/language/susy/_container.scss +81 -0
  117. data/_sass/vendor/susy/susy/language/susy/_context.scss +36 -0
  118. data/_sass/vendor/susy/susy/language/susy/_gallery.scss +94 -0
  119. data/_sass/vendor/susy/susy/language/susy/_grids.scss +64 -0
  120. data/_sass/vendor/susy/susy/language/susy/_gutters.scss +154 -0
  121. data/_sass/vendor/susy/susy/language/susy/_isolate.scss +77 -0
  122. data/_sass/vendor/susy/susy/language/susy/_margins.scss +94 -0
  123. data/_sass/vendor/susy/susy/language/susy/_padding.scss +74 -0
  124. data/_sass/vendor/susy/susy/language/susy/_rows.scss +138 -0
  125. data/_sass/vendor/susy/susy/language/susy/_settings.scss +216 -0
  126. data/_sass/vendor/susy/susy/language/susy/_span.scss +163 -0
  127. data/_sass/vendor/susy/susy/language/susy/_validation.scss +16 -0
  128. data/_sass/vendor/susy/susy/language/susyone/_background.scss +18 -0
  129. data/_sass/vendor/susy/susy/language/susyone/_functions.scss +377 -0
  130. data/_sass/vendor/susy/susy/language/susyone/_grid.scss +312 -0
  131. data/_sass/vendor/susy/susy/language/susyone/_isolation.scss +51 -0
  132. data/_sass/vendor/susy/susy/language/susyone/_margin.scss +93 -0
  133. data/_sass/vendor/susy/susy/language/susyone/_media.scss +105 -0
  134. data/_sass/vendor/susy/susy/language/susyone/_padding.scss +92 -0
  135. data/_sass/vendor/susy/susy/language/susyone/_settings.scss +60 -0
  136. data/_sass/vendor/susy/susy/output/_float.scss +9 -0
  137. data/_sass/vendor/susy/susy/output/_shared.scss +15 -0
  138. data/_sass/vendor/susy/susy/output/_support.scss +9 -0
  139. data/_sass/vendor/susy/susy/output/float/_container.scss +16 -0
  140. data/_sass/vendor/susy/susy/output/float/_end.scss +40 -0
  141. data/_sass/vendor/susy/susy/output/float/_isolate.scss +22 -0
  142. data/_sass/vendor/susy/susy/output/float/_span.scss +35 -0
  143. data/_sass/vendor/susy/susy/output/shared/_background.scss +26 -0
  144. data/_sass/vendor/susy/susy/output/shared/_container.scss +21 -0
  145. data/_sass/vendor/susy/susy/output/shared/_direction.scss +42 -0
  146. data/_sass/vendor/susy/susy/output/shared/_inspect.scss +25 -0
  147. data/_sass/vendor/susy/susy/output/shared/_margins.scss +23 -0
  148. data/_sass/vendor/susy/susy/output/shared/_output.scss +14 -0
  149. data/_sass/vendor/susy/susy/output/shared/_padding.scss +23 -0
  150. data/_sass/vendor/susy/susy/output/support/_background.scss +58 -0
  151. data/_sass/vendor/susy/susy/output/support/_box-sizing.scss +19 -0
  152. data/_sass/vendor/susy/susy/output/support/_clearfix.scss +18 -0
  153. data/_sass/vendor/susy/susy/output/support/_prefix.scss +19 -0
  154. data/_sass/vendor/susy/susy/output/support/_rem.scss +22 -0
  155. data/_sass/vendor/susy/susy/output/support/_support.scss +85 -0
  156. data/_sass/vendor/susy/susy/su/_grid.scss +103 -0
  157. data/_sass/vendor/susy/susy/su/_settings.scss +73 -0
  158. data/_sass/vendor/susy/susy/su/_utilities.scss +111 -0
  159. data/_sass/vendor/susy/susy/su/_validation.scss +57 -0
  160. data/assets/css/main.scss +79 -0
  161. data/assets/fonts/FontAwesome.otf +0 -0
  162. data/assets/fonts/fontawesome-webfont.eot +0 -0
  163. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  164. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  165. data/assets/fonts/fontawesome-webfont.woff +0 -0
  166. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  167. data/assets/js/_main.js +100 -0
  168. data/assets/js/main.min.js +5 -0
  169. data/assets/js/plugins/jquery.fitvids.js +82 -0
  170. data/assets/js/plugins/jquery.greedy-navigation.js +72 -0
  171. data/assets/js/plugins/jquery.magnific-popup.js +2049 -0
  172. data/assets/js/plugins/jquery.smooth-scroll.min.js +8 -0
  173. data/assets/js/plugins/stickyfill.min.js +8 -0
  174. data/assets/js/vendor/jquery/jquery-1.12.4.min.js +5 -0
  175. metadata +243 -16
  176. data/_includes/header.html +0 -0
  177. data/_layouts/page.html +0 -5
  178. data/_layouts/post.html +0 -9
  179. data/_sass/woforo.scss +0 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 171e4a37f25c3979308b59589aa7161513db7549
4
- data.tar.gz: b0a5465301e84029d92c92ad54f2790712b9b26d
3
+ metadata.gz: 6abd62842db4d8ac6122cbbb44ff8a84767417e0
4
+ data.tar.gz: 5f3fc53d164fb4c56d63999b148a634530dfde29
5
5
  SHA512:
6
- metadata.gz: da5234278368d8132103ec7d245dd77156db875d02f8da778d61595a5b3e77fbbd10ea25dc8c1ea9fcfa45c4c3b0ab42b6a889d49e83ab714d2cc2b382683f1b
7
- data.tar.gz: eaa73e45c171d89d2424fe9f7c750a3ee307dd1182013c88c015be845bc1af53ab61b743adceb3e2ebe2b1e4a9b19e4e570428b195a2b6ad581f95309f43b318
6
+ metadata.gz: 5968ff9f84dfeca36cd71558c3705000bb8cf9d18e61120f934d5e5553192c47c243f8a7623ea14c0ca10903441e0f09fae85ed1843339bf294f74ecbc68b57c
7
+ data.tar.gz: 2da6df112b9446d37dfb6fced6913d2ed2d4e56f5254ec2b452eb82939ee9eb5d6705f0e5684107b72dd429ab26e8d9ff5217263d9eb02d0a3c14c9af0ef689d
@@ -0,0 +1,690 @@
1
+ ## [4.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.1)
2
+
3
+ ### Enhancements
4
+
5
+ - Remove hardcoded `words_per_minute` "less than" and "minute read" values and make dynamic. [#703](https://github.com/mmistakes/minimal-mistakes/issues/703)
6
+ - 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)
7
+ - Add support for YouTube channel URLs in author profile. [#716](https://github.com/mmistakes/minimal-mistakes/issues/716)
8
+
9
+ ### Bug Fixes
10
+
11
+ - Add Jekyll as `spec.add_runtime_dependency` in `.gemspec`.
12
+
13
+ ## [4.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.0)
14
+
15
+ ### Enhancements
16
+
17
+ - 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
18
+
19
+ ### Bug Fixes
20
+
21
+ - Fix link to Discourse.org homepage in `noscript` section [#699](https://github.com/mmistakes/minimal-mistakes/pull/699)
22
+ - Fix padding issue with pagination buttons [#694](https://github.com/mmistakes/minimal-mistakes/issues/694)
23
+
24
+ ## [4.0.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.10)
25
+
26
+ ### Bug Fixes
27
+
28
+ - Add Staticman default `path`. [#683](https://github.com/mmistakes/minimal-mistakes/issues/683)
29
+
30
+ ### Maintenance
31
+
32
+ - Slight correction/improvements to French UI text. [#685](https://github.com/mmistakes/minimal-mistakes/pull/685)
33
+
34
+ ## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9)
35
+
36
+ ### Bug Fixes
37
+
38
+ - Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668)
39
+
40
+ ## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8)
41
+
42
+ ### Bug Fixes
43
+
44
+ - Set default value for `words_per_minute`. [#657](https://github.com/mmistakes/minimal-mistakes/issues/657)
45
+ - Adjust sidebar navigation list CSS so it collapses at the correct width.
46
+
47
+ ### Maintenance
48
+
49
+ - Add Google AdSense banner to `/docs/_layouts/default.html` for demo site.
50
+
51
+ ## [4.0.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.7)
52
+
53
+ ### Enhancements
54
+
55
+ - Add `!default` values to **_sass/_variables.scss**.
56
+ - Collapse sidebar navigation lists on smaller screens. [#607](https://github.com/mmistakes/minimal-mistakes/issues/607)
57
+
58
+ ### Bug Fixes
59
+
60
+ - Rename `#comments` to something more unique to avoid clashes with Kramdown generated headline IDs. [#582](https://github.com/mmistakes/minimal-mistakes/issues/582)
61
+
62
+ ### Maintenance
63
+
64
+ - Reorganize SCSS partials in **assets/css/main.scss**
65
+
66
+ ## [4.0.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.6)
67
+
68
+ ### Enhancements
69
+
70
+ - 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)
71
+ - Add structured data markup for `itemprop="person"` in author profile sidebar. [#647](https://github.com/mmistakes/minimal-mistakes/pull/647)
72
+
73
+ ### Bug Fixes
74
+
75
+ - Fix improper YAML formatting of some locales. [#651](https://github.com/mmistakes/minimal-mistakes/pull/651)
76
+
77
+ ### Maintenance
78
+
79
+ - Clarify "migrating to gem-theme" instructions in **Quick Start Guide**.
80
+ - Add `rake preview` task for testing `/test` during theme development.
81
+
82
+ ## [4.0.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5)
83
+
84
+ ### Enhancements
85
+
86
+ - Update gems: `jekyll-sitemap` (0.12), `jekyll-feed` (0.8).
87
+ - Improve next/previous pager links visibility by changing gray color to blue (`$link-color`).
88
+
89
+ ### Bug Fixes
90
+
91
+ - Fix `.sidebar` flicker/jump when hovered. [#583](https://github.com/mmistakes/minimal-mistakes/issues/583)
92
+
93
+ ### Maintenance
94
+
95
+ - Move contents of `gh-pages` branch to `master` inside of the `/docs` folder.
96
+
97
+ ## [4.0.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4)
98
+
99
+ ### Enhancements
100
+
101
+ - "Gemify" theme ~> `gem "minimal-mistakes-jekyll"`
102
+ - Replace `base_path` include with `absolute_url` filter where possible.
103
+ - 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.**
104
+ - Add [home `layout`](https://github.com/mmistakes/minimal-mistakes/blob/master/_layouts/home.html)
105
+ - Added missing Turkish translations for UI text. [#621](https://github.com/mmistakes/minimal-mistakes/pull/621)
106
+ - Make author avatar optional in sidebar.
107
+ - Update **/_includes/seo.html** for meta description. [#558](https://github.com/mmistakes/minimal-mistakes/pull/558)
108
+
109
+ ### Bug Fixes
110
+
111
+ - Fix navigation bar animation "flicker" in Safari [#568](https://github.com/mmistakes/minimal-mistakes/issues/568)
112
+ - Fix `author.avatar` paths for externally hosted images.
113
+
114
+ ### Maintenance
115
+
116
+ - Add documentation around `gem "minimal-mistakes-jekyll"` installation and use.
117
+ - 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/`.
118
+ - Add "[Overriding Theme Defaults](https://mmistakes.github.io/minimal-mistakes/docs/overriding-theme-defaults/)" page to documentation.
119
+
120
+ ## [3.4.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.8)
121
+
122
+ ### Enhancements
123
+
124
+ - Improve type readability for larger viewports by bumping up base `font-size`. [#533](https://github.com/mmistakes/minimal-mistakes/issues/533)
125
+ - Update Portuguese localized UI text. [#541](https://github.com/mmistakes/minimal-mistakes/pull/541)
126
+ - Add `page.title` and via parameter to Twitter share link. [#538](https://github.com/mmistakes/minimal-mistakes/pull/538)
127
+
128
+ ### Bug Fixes
129
+
130
+ - Fix Last.fm author profile URL. [#540](https://github.com/mmistakes/minimal-mistakes/pull/540)
131
+
132
+ ### Maintenance
133
+
134
+ - Move Brazilian Portuguese localized text under `pt-BR` key.
135
+
136
+ ## [3.4.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.7)
137
+
138
+ ### Enhancements
139
+
140
+ - Add `layout` based and user-defined class names to `<body>` element for added CSS hooks. [#526](https://github.com/mmistakes/minimal-mistakes/pull/526)
141
+ - Add simplified Chinese localized UI text. [#532](https://github.com/mmistakes/minimal-mistakes/pull/532)
142
+
143
+ ### Bug Fixes
144
+
145
+ - Remove duplicate include of `base_path` in category-list.html [#522](https://github.com/mmistakes/minimal-mistakes/pull/522)
146
+
147
+ ## [3.4.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.6)
148
+
149
+ ### Enhancements
150
+
151
+ - Add Italian "comments" related localized UI text. [#514](https://github.com/mmistakes/minimal-mistakes/pull/514)
152
+
153
+ ### Bug Fixes
154
+
155
+ - Disable `compress` HTML layout by default. To enable add `layout: compress` to `_layouts/default.html`.
156
+
157
+ ## [3.4.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.5)
158
+
159
+ ### Enhancements
160
+
161
+ - Improve line numbered code block styling when using `{% highlight linenos %}` tag. [#513](https://github.com/mmistakes/minimal-mistakes/issues/513)
162
+ - Add English fallback to "Follow" button label. [#496](https://github.com/mmistakes/minimal-mistakes/pull/496)
163
+
164
+ ### Bug Fixes
165
+
166
+ - Fix Firefox alignment issues with code blocks generated with the `{% highlight %}` tag. [#512](https://github.com/mmistakes/minimal-mistakes/issues/512)
167
+
168
+ ### Maintenance
169
+
170
+ - Clarified comment for `author.stackoverflow` value used in author sidebar links. [#487](https://github.com/mmistakes/minimal-mistakes/pull/487)
171
+ - Add list of localized text strings. [#488](https://github.com/mmistakes/minimal-mistakes/pull/488)
172
+ - Add `{% highlight %}` code block examples to demo site.
173
+ - Add documentation for using custom sidebar navigation menus. [#476](https://github.com/mmistakes/minimal-mistakes/issues/476)
174
+
175
+ ## [3.4.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.4)
176
+
177
+ ### Enhancements
178
+
179
+ - Add French "comments" related localized UI text. [#472](https://github.com/mmistakes/minimal-mistakes/pull/472)
180
+
181
+ ### Bug Fixes
182
+
183
+ - Exclude `vendor` in Jekyll config file.
184
+ - Fix Liquid syntax error for offending parenthesis. [#479](https://github.com/mmistakes/minimal-mistakes/issues/479)
185
+
186
+ ### Maintenance
187
+
188
+ - Update gems: `colorator` (1.1.0), `forwardable-extended` (2.6.0), `github-pages` (93), `jekyll` (= 3.2.1), `minima` (= 1.0.1).
189
+
190
+ ## [3.4.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.3)
191
+
192
+ ### Enhancements
193
+
194
+ - Make ["honeypot" `input`](https://github.com/mmistakes/minimal-mistakes/commit/06a8249a69a37dddda7e2a5bfbe32056c1a9a607) in Staticman comment form less obvious to spam bots
195
+ - Add padding to `.highlight` code blocks to better [align `overflow` scrollbar](https://github.com/mmistakes/minimal-mistakes/commit/e4abec0a6f7f8cff72505ca0754615df294fd5b3) to the bottom.
196
+ - Add additional image options for Twitter card social sharing meta tags. [#466](https://github.com/mmistakes/minimal-mistakes/pull/466)
197
+ - Add structured data markup for Staticman comments. [#458](https://github.com/mmistakes/minimal-mistakes/issues/458)
198
+
199
+ ### Bug Fixes
200
+
201
+ - Format `og:locale` tag with `_` instead of `-`. [#462](https://github.com/mmistakes/minimal-mistakes/issues/462)
202
+
203
+ ### Maintenance
204
+
205
+ - Add note to docs about using `url: http://localhost:4000` when working locally.
206
+
207
+ ## [3.4.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.2)
208
+
209
+ ### Enhancements
210
+
211
+ - Improve UX of static comment forms. [#448](https://github.com/mmistakes/minimal-mistakes/issues/448)
212
+
213
+ ## [3.4.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.1)
214
+
215
+ ### Enhancements
216
+
217
+ - Add `staticman.filename` configuration with UNIX timestamp for sorting data files. example ~> `comment-1470943149`.
218
+
219
+ ### Bug Fixes
220
+
221
+ - Don't add `<a>` to author name if URL is blank.
222
+
223
+ ## [3.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.0)
224
+
225
+ ### Enhancements
226
+
227
+ - Support static-based commenting via [Staticman](https://staticman.net/) for sites hosted with GitHub Pages. [#424](https://github.com/mmistakes/minimal-mistakes/issues/424)
228
+
229
+ ## [3.3.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.7)
230
+
231
+ ### Bug Fixes
232
+
233
+ - Re-enabled Jekyll plugins in `_config.yml` in case they aren't autoloaded in `Gemfile`. [#417](https://github.com/mmistakes/minimal-mistakes/issues/417)
234
+
235
+ ### Enhancements
236
+
237
+ - Fallback to `site.github.url` for use in `{{ base_path }}` when `site.url` is `nil`.
238
+ - 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)
239
+
240
+ ### Maintenance
241
+
242
+ - Document `site.repository` and its role with [`github-metadata`](https://github.com/jekyll/github-metadata) gem.
243
+ - Add sample [archive page with content](https://mmistakes.github.io/minimal-mistakes/archive-layout-with-content/) for testing styles on demo site.
244
+
245
+ ## [3.3.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.6)
246
+
247
+ ### Bug Fixes
248
+
249
+ - Fix blank `site.teaser` bug. [#412](https://github.com/mmistakes/minimal-mistakes/issues/412)
250
+
251
+ ## [3.3.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.5)
252
+
253
+ ### Enhancements
254
+
255
+ - Add English default text `site.locale` strings. [#407](https://github.com/mmistakes/minimal-mistakes/issues/407)
256
+ - Add Portuguese localized UI text. [#411](https://github.com/mmistakes/minimal-mistakes/pull/411)
257
+ - Add Italian localized UI text. [#409](https://github.com/mmistakes/minimal-mistakes/pull/409)
258
+
259
+ ### Maintenance
260
+
261
+ - Remove unused Google AdSense variables in `_config.yml`. [#404](https://github.com/mmistakes/minimal-mistakes/issues/404)
262
+ - Update `Gemfile` instructions for using `github-pages` vs. native `jekyll` gems.
263
+ - Disable `gems:` in `_config.yml` and enable plugins with Bundler instead.
264
+ - Add `repository` to `_config.yml` to suppress GitHub Pages error `Liquid Exception: No repo name found.`
265
+
266
+ ## [3.3.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.4)
267
+
268
+ ### Enhancements
269
+
270
+ - 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)
271
+ - Add Turkish localized UI text. [#403](https://github.com/mmistakes/minimal-mistakes/pull/403)
272
+
273
+ ### Maintenance
274
+
275
+ - Update gems: `activesupport` (4.2.7), `ffi` (1.9.14), `github-pages` (88), `jekyll-redirect-from` (0.11.0), `jekyll-watch` (1.5.0).
276
+
277
+ ## [3.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.3)
278
+
279
+ ### Enhancements
280
+
281
+ - Make footer stick to the bottom of the page.
282
+
283
+ ### Bug Fixes
284
+
285
+ - Fix `gallery` size bug [#402](https://github.com/mmistakes/minimal-mistakes/issues/402)
286
+
287
+ ### Maintenance
288
+
289
+ - Set default `lang` to `en`.
290
+
291
+ ## [3.3.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.2)
292
+
293
+ ### Bug Fixes
294
+
295
+ - Fix JavaScript that triggers "sticky" sidebar to avoid layout issues on screen sizes < `1024px`. [#396](https://github.com/mmistakes/minimal-mistakes/issues/396)
296
+
297
+ ## [3.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.1)
298
+
299
+ ### Enhancements
300
+
301
+ - Enable image popup on < 500px wide screens. [#385](https://github.com/mmistakes/minimal-mistakes/issues/385)
302
+ - 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)
303
+ - Improve link posts in archive listings. [#276](https://github.com/mmistakes/minimal-mistakes/issues/276)
304
+
305
+ ### Maintenance
306
+
307
+ - Update gems: `github-pages` (86), `ffi` 1.9.13, `jekyll-mentions` 1.1.3, and `rouge` 1.11.1
308
+ - Fix note about custom sidebar content appearing below author profile. [#388](https://github.com/mmistakes/minimal-mistakes/issues/388)
309
+
310
+ ## [3.2.13](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.13)
311
+
312
+ ### Enhancements
313
+
314
+ - Add English default UI text for Canada, Great Britain, and Australia. [#377](https://github.com/mmistakes/minimal-mistakes/issues/377)
315
+ - Switch default locale from `en-US` to `en`.
316
+
317
+ ## [3.2.12](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.12)
318
+
319
+ ### Enhancements
320
+
321
+ - Remove window width "magic number" from sticky sidebar check in `main.js` for improved flexibility. [#375](https://github.com/mmistakes/minimal-mistakes/pull/375)
322
+
323
+ ### Bug Fixes
324
+
325
+ - 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)
326
+
327
+ ## [3.2.11](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.11)
328
+
329
+ ### Bug Fixes
330
+
331
+ - Fix disappearing author sidebar links [#372](https://github.com/mmistakes/minimal-mistakes/issues/372)
332
+
333
+ ### Maintenance
334
+
335
+ - Update gems: `github-pages` (84), `jekyll-github-metadata` 2.0.2, and `kramdown` 1.11.1
336
+ - Update vendor JavaScript: jQuery 1.12.4, Stickyfill.js 1.1.4
337
+ - Update Font Awesome 4.6.3
338
+
339
+ ## [3.2.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.10)
340
+
341
+ ### Maintenance
342
+
343
+ - Add `CONTRIBUTING.md`
344
+
345
+ ## [3.2.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.9)
346
+
347
+ ### Enhancements
348
+
349
+ - 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)
350
+
351
+ ### Bug Fixes
352
+
353
+ - Fix `Person` typo Schema.org type [#358](https://github.com/mmistakes/minimal-mistakes/pull/358)
354
+
355
+ ### Maintenance
356
+
357
+ - Update `github-pages` gem and dependencies.
358
+ - Remove `minutes_read` to avoid awkward reading time wording [#356](https://github.com/mmistakes/minimal-mistakes/issues/356)
359
+
360
+ ## [3.2.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.8)
361
+
362
+ ### Bug Fixes
363
+
364
+ - Remove `cursor: pointer` that appears on white-space surrounding author side list items and links. [#354](https://github.com/mmistakes/minimal-mistakes/pull/354)
365
+
366
+ ### Maintenance
367
+
368
+ - Add contributing information to `README.md`. [#357](https://github.com/mmistakes/minimal-mistakes/issues/357)
369
+
370
+ ## [3.2.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.7)
371
+
372
+ ### Enhancements
373
+
374
+ - Add French localized UI text. [#346](https://github.com/mmistakes/minimal-mistakes/pull/346)
375
+
376
+ ### Bug Fixes
377
+
378
+ - Fix branch logic for Yandex and Alexa in `seo.html`. [#348](https://github.com/mmistakes/minimal-mistakes/pull/348)
379
+
380
+ ## [3.2.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.6)
381
+
382
+ ### Bug Fixes
383
+
384
+ - 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)
385
+
386
+ ## [3.2.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.5)
387
+
388
+ ### Bug Fixes
389
+
390
+ - Fix link color in hero overlay to be white.
391
+ - Remove underlines from archive item titles.
392
+
393
+ ## [3.2.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.4)
394
+
395
+ ### Enhancements
396
+
397
+ - 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)
398
+ - Add Spanish localized UI text. [#338](https://github.com/mmistakes/minimal-mistakes/pull/338)
399
+
400
+ ### Bug Fixes
401
+
402
+ - Fix alignment of icons in author sidebar [#341](https://github.com/mmistakes/minimal-mistakes/issues/341)
403
+
404
+ ### Maintenance
405
+
406
+ - Add background color to page footer to set it apart from main content. [#342](https://github.com/mmistakes/minimal-mistakes/issues/342)
407
+ - Add terms and privacy policy to theme's demo site. [#343](https://github.com/mmistakes/minimal-mistakes/issues/343)
408
+ - Update screenshots found in theme documentation.
409
+
410
+ ## [3.2.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.3)
411
+
412
+ ### Enhancements
413
+
414
+ - Add [Discourse](https://www.discourse.org/) as a commenting provider. [#335](https://github.com/mmistakes/minimal-mistakes/pull/335)
415
+
416
+ ## [3.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.2)
417
+
418
+ ### Enhancements
419
+
420
+ - 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)
421
+
422
+ ## [3.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.1)
423
+
424
+ ### Bug Fixes
425
+
426
+ - Remove need for "double tapping" masthead menu links on iOS devices. [#315](https://github.com/mmistakes/minimal-mistakes/issues/315)
427
+
428
+ ### Maintenance
429
+
430
+ - Add `ISSUE_TEMPLATE.md` for improve issue submission process.
431
+
432
+ ## [3.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.0)
433
+
434
+ ### Bug Fixes
435
+
436
+ - 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)
437
+
438
+ ## [3.1.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.8)
439
+
440
+ ### Bug Fixes
441
+
442
+ - 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)
443
+
444
+ ### Maintenance
445
+
446
+ - Remove duplicate `fa-twitter` and `fa-twitter-square` classes from `_utilities.scss`. [#302](https://github.com/mmistakes/minimal-mistakes/issues/302)
447
+
448
+ - 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)
449
+
450
+ ## [3.1.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.7)
451
+
452
+ ### Enhancements
453
+
454
+ - Add translation key for "Recent Posts" used in home page `index.html`. [#316](https://github.com/mmistakes/minimal-mistakes/pull/316)
455
+
456
+ ### Maintenance
457
+
458
+ - Small fix to avoid underlying the whitespace between icons and related text when hovering. [#303](https://github.com/mmistakes/minimal-mistakes/pull/303)
459
+
460
+ ## [3.1.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.6)
461
+
462
+ ### Maintenance
463
+
464
+ - Update gem dependencies. Run `bundle` to update `Gemfile.lock`.
465
+
466
+ ## [3.1.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.5)
467
+
468
+ ### Maintenance
469
+
470
+ - Fix `www` and `https` links in author profile include [#293](https://github.com/mmistakes/minimal-mistakes/pull/293)
471
+
472
+ ## [3.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.4)
473
+
474
+ ### Enhancements
475
+
476
+ - Add overlay_filter param to hero headers [#298](https://github.com/mmistakes/minimal-mistakes/pull/298)
477
+
478
+ ## [3.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.3)
479
+
480
+ ### Enhancements
481
+
482
+ - Improve `site.locale` documentation [#284](https://github.com/mmistakes/minimal-mistakes/issues/284)
483
+ - Remove ProTip note about protocol-less `site.url` as it is an anti-pattern [#288](https://github.com/mmistakes/minimal-mistakes/issues/288)
484
+
485
+ ### Bug Fixes
486
+
487
+ - Fix `og_image` URL in seo.html [#277](https://github.com/mmistakes/minimal-mistakes/issues/277)
488
+ - Fix `author_profile` toggle when assigned in a `_layout` [#285](https://github.com/mmistakes/minimal-mistakes/issues/285)
489
+ - Fix typo in `build:all` npm script [#283](https://github.com/mmistakes/minimal-mistakes/pull/283)
490
+ - Fix URL typo documentation [#287](https://github.com/mmistakes/minimal-mistakes/issues/287)
491
+ - 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)
492
+
493
+ ## [3.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.2)
494
+
495
+ ### Enhancements
496
+
497
+ - Explain how to use `nav_list` helper in [documentation](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list).
498
+ - Reduce left/right padding on smaller screens to increase width of main content column.
499
+
500
+ ### Bug Fixes
501
+
502
+ - 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).
503
+
504
+ ## [3.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.1)
505
+
506
+ ### Bug Fix
507
+
508
+ - Fixed reading time bug when `words_per_minute` wasn't set in `_config.yml` [#271](https://github.com/mmistakes/minimal-mistakes/issues/271)
509
+
510
+ ## [3.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.0)
511
+
512
+ ### Enhancements
513
+
514
+ - Updated [Font Awesome](https://fortawesome.github.io/Font-Awesome/whats-new/) to version 4.6.1
515
+ - Added optional GitHub and Bitbucket links to footer if set on `site.author` in `_config.yml`.
516
+
517
+ ### Bug Fixes
518
+ - Fixed Bitbucket URL typo in author sidebar.
519
+
520
+ ## [3.0.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.0.3)
521
+
522
+ ### Enhancements
523
+
524
+ - Rebuilt the entire theme: layouts, includes, stylesheets, scripts, you name it.
525
+ - Refreshed the look and feel while staying true to the original design of the theme (author sidebar/main content).
526
+ - Replaced grid system with [Susy](http://susy.oddbird.net/).
527
+ - Replaced Grunt tasks with `npm` scripts.
528
+ - 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)
529
+ - Greatly improved [theme documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
530
+ - Increased the amount of sample posts, sample pages, and sample collections to throughly test the theme and edge-cases.
531
+ - Moved all sample content and assets out of `master` to keep it as clean as possible for forking.
532
+ - 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.
533
+ - Added taxonomy links to posts (tags and categories).
534
+ - Added optional "reading time" meta data.
535
+ - Improved Liquid used for Twitter Cards and Open Graph data in `<head>`.
536
+ - Improved `gallery` include helper and added `feature_row` for use with splash page layout.
537
+ - Added Keybase.io, author web URI, and Bitbucket optional links to sidebar.
538
+ - Add `feed.xml` link to footer.
539
+ - Added a [UI text data file](https://mmistakes.github.io/minimal-mistakes/docs/ui-text/) to easily change all text found in the theme.
540
+ - Added LinkedIn to optional social share buttons.
541
+ - Added Facebook, Google+, and custom commenting options in addition to Disqus.
542
+ - Added optional breadcrumb links.
543
+
544
+ ## [2.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.1)
545
+
546
+ ## [2.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.0)
547
+
548
+ ### Enhancements
549
+
550
+ - Add support for Jekyll 3.0
551
+ - Minor updates to syntax highlighting CSS and theme documentation
552
+
553
+ ## [2.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.3)
554
+
555
+ ### Enhancements
556
+
557
+ - Cleaner print styles that remove the top navigation, social sharing buttons, and other elements not needed when printed.
558
+
559
+ ## [2.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.2)
560
+
561
+ ### Enhancements
562
+
563
+ - Add optional CodePen icon/url to author side bar [#156](https://github.com/mmistakes/minimal-mistakes/pull/156)
564
+ - Documented Stackoverflow username explanation in `_config.yml` [#157](https://github.com/mmistakes/minimal-mistakes/pull/157)
565
+ - Simplified Liquid in `post-index.html` to better handle year listings [#166](https://github.com/mmistakes/minimal-mistakes/pull/166)
566
+
567
+ ### Bug Fixes
568
+
569
+ - Cleanup Facebook related Open Graph meta tags [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
570
+ - Corrected minor typos [#158](https://github.com/mmistakes/minimal-mistakes/pull/158) [#175](https://github.com/mmistakes/minimal-mistakes/issues/175)
571
+
572
+ ## [2.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.1)
573
+
574
+ ### Enhancements
575
+
576
+ - Add optional XING profile link to author sidebar
577
+ - Include open graph meta tags for feature image (if assigned) [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
578
+ - Create an include for feed footer
579
+
580
+ ### Bug Fixes
581
+
582
+ - Remove http protocol from Google search form on sample 404 page
583
+ - Only show related posts if there are one or more available
584
+ - Fix alignment of email address link in author sidebar
585
+
586
+ ## [2.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.0)
587
+
588
+ ### Enhancements
589
+
590
+ - Add optional social sharing buttons ([#42](https://github.com/mmistakes/minimal-mistakes/issues/42))
591
+
592
+ ![social sharing buttons](https://cloud.githubusercontent.com/assets/1376749/5860522/d9f28a96-a22f-11e4-9b83-940a3a9a766a.png)
593
+
594
+ - 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.
595
+ - Fix typos in posts and documentation and remove references to Less
596
+ - Include note about Octopress gem being optional
597
+ - Post author override support extended to the Atom feed ([#71](https://github.com/mmistakes/minimal-mistakes/pull/71))
598
+ - Only include email address in feed if specified in `_config.yml` or author `_data`
599
+ - Wrap all page content in `#main` to harmonize article and post index styles ([#86](https://github.com/mmistakes/minimal-mistakes/issues/86))
600
+ - Include new sample feature images for posts and pages
601
+ - Table of contents improvements: fix collapse toggle, indent nested elements, show on small screens, and create an `_include` for reusing in posts and pages.
602
+ - Include note about running Jekyll with `bundle exec` when using Bundler
603
+ - Fix home page path in top navigation
604
+ - Remove Google Authorship ([#120](https://github.com/mmistakes/minimal-mistakes/issues/120))
605
+ - Remove duplicate author content that displayed in `div.article-author-bottom`
606
+ - Removed unused `_sass/print.scss` styles
607
+ - Improve comments in `.scss` files
608
+
609
+ ## [2.0.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/v2.0)
610
+
611
+ ## [1.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.3)
612
+
613
+ ### Enhancements
614
+
615
+ - Added new icons and profile links for Stackoverflow, Dribbble, Pinterest, Foursquare, and Steam to the author bio sidebar.
616
+ - Cleaned up the Kramdown auto table of contents styling to be more readable
617
+ - Removed page width specific .less stylesheets and created mixins for easier updating
618
+ - Removed Modernizr since it wasn't being used
619
+ - Added pages to sitemap.xml
620
+ - Added category: to rake new_post task
621
+ - Minor typographic changes
622
+
623
+ ### Bug Fixes
624
+
625
+ - Corrected various broken links in README and Theme Setup.
626
+
627
+ ## [1.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.1)
628
+
629
+ ### Enhancements
630
+
631
+ - Cleaned up table of contents styling
632
+ - 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.
633
+
634
+ ![menu animation](https://camo.githubusercontent.com/3fbd8c1326485f4b1ab32c0005c0fca7660b5d31/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313337363734392f323136343037352f31653366303663322d393465372d313165332d383961612d6436623636376562306564662e676966)
635
+
636
+ ## [1.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.2.0)
637
+
638
+ ### Bug Fixes
639
+
640
+ - Table weren't filling the entire width of the content container. They now scale at 100%. Thanks [@dhruvbhatia](https://github.com/dhruvbhatia)
641
+
642
+ ### Enhancements
643
+
644
+ - Decreased spacing between Markdown footnotes
645
+ - Removed dark background on footer
646
+ - Removed UPPERCASE styling on post titles in the index listing
647
+
648
+ ## [1.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.4)
649
+
650
+ ### Bug Fixes
651
+
652
+ - Fix top navigation bug issue ([#10](https://github.com/mmistakes/minimal-mistakes/issues/10)) for real this time. Remember to clear your floats kids.
653
+
654
+ ## [1.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.3)
655
+
656
+ ### Bug Fixes
657
+
658
+ - Fix top navigation links that weren't click able on small viewports (Issue [#10](https://github.com/mmistakes/minimal-mistakes/issues/10)).
659
+ - Remove line wrap from top navigation links that may span multiple lines.
660
+
661
+ ## [1.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.2)
662
+
663
+ ### Enhancements
664
+
665
+ - Added Grunt build script for compiling Less/JavaScript and optimizing image assets.
666
+ - Added support for large image summary Twitter card.
667
+ - Stylesheet adjustments
668
+
669
+ ## [1.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.1)
670
+
671
+ ### Bug Fixes
672
+
673
+ - 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.
674
+
675
+ ### Enhancements
676
+
677
+ - Added [image attribution](http://mmistakes.github.io/minimal-mistakes/theme-setup/#feature-images) for post and page feature images.
678
+ - Added [404 page](http://mmistakes.github.io/minimal-mistakes/404.html).
679
+ - Cleaned up various Less variables to better align with naming conventions used in other MM Jekyll themes.
680
+ - Removed Chrome Frame references.
681
+ - Added global CSS3 transitions to text and block elements.
682
+ - Improved typography in a few places.
683
+
684
+ ## [1.0.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.2)
685
+
686
+ ### Enhancements
687
+
688
+ - Google Analytics, Google Authorship, webmaster verifies, and Twitter card meta are now optional.
689
+
690
+ ## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1)