Showing preview only (1,933K chars total). Download the full file or copy to clipboard to get everything.
Repository: mmistakes/minimal-mistakes
Branch: master
Commit: 5786c35342d4
Files: 502
Total size: 1.8 MB
Directory structure:
gitextract__97g9qfe/
├── .editorconfig
├── .gitattributes
├── .github/
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ └── documentation.yml
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows/
│ ├── bad-pr.yml
│ └── build.yml
├── .gitignore
├── CHANGELOG.md
├── Gemfile
├── LICENSE
├── README.md
├── Rakefile
├── _config.yml
├── _data/
│ ├── navigation.yml
│ └── ui-text.yml
├── _includes/
│ ├── after-content.html
│ ├── analytics-providers/
│ │ ├── custom.html
│ │ ├── google-gtag.html
│ │ ├── google-universal.html
│ │ ├── google.html
│ │ └── swetrix.html
│ ├── analytics.html
│ ├── archive-single.html
│ ├── author-profile-custom-links.html
│ ├── author-profile.html
│ ├── before-related.html
│ ├── breadcrumbs.html
│ ├── category-list.html
│ ├── comment.html
│ ├── comments-providers/
│ │ ├── custom.html
│ │ ├── custom_scripts.html
│ │ ├── discourse.html
│ │ ├── disqus.html
│ │ ├── facebook.html
│ │ ├── giscus.html
│ │ ├── scripts.html
│ │ ├── staticman.html
│ │ ├── staticman_v2.html
│ │ └── utterances.html
│ ├── comments.html
│ ├── copyright.html
│ ├── copyright.js
│ ├── documents-collection.html
│ ├── feature_row
│ ├── figure
│ ├── footer/
│ │ └── custom.html
│ ├── footer.html
│ ├── gallery
│ ├── group-by-array
│ ├── head/
│ │ └── custom.html
│ ├── head.html
│ ├── masthead.html
│ ├── nav_list
│ ├── page__date.html
│ ├── page__hero.html
│ ├── page__hero_video.html
│ ├── page__meta.html
│ ├── page__related.html
│ ├── page__taxonomy.html
│ ├── paginator-v1.html
│ ├── paginator-v2.html
│ ├── paginator.html
│ ├── post_pagination.html
│ ├── posts-category.html
│ ├── posts-tag.html
│ ├── posts-taxonomy.html
│ ├── schema.html
│ ├── scripts.html
│ ├── search/
│ │ ├── algolia-search-scripts.html
│ │ ├── google-search-scripts.html
│ │ ├── lunr-search-scripts.html
│ │ └── search_form.html
│ ├── seo.html
│ ├── sidebar-custom.html
│ ├── sidebar.html
│ ├── skip-links.html
│ ├── social-share.html
│ ├── tag-list.html
│ ├── toc
│ ├── toc.html
│ └── video
├── _layouts/
│ ├── archive-taxonomy.html
│ ├── archive.html
│ ├── categories.html
│ ├── category.html
│ ├── collection.html
│ ├── compress.html
│ ├── default.html
│ ├── home.html
│ ├── posts.html
│ ├── search.html
│ ├── single.html
│ ├── splash.html
│ ├── tag.html
│ └── tags.html
├── _sass/
│ ├── minimal-mistakes/
│ │ ├── _animations.scss
│ │ ├── _archive.scss
│ │ ├── _base.scss
│ │ ├── _buttons.scss
│ │ ├── _copyright.scss
│ │ ├── _footer.scss
│ │ ├── _forms.scss
│ │ ├── _masthead.scss
│ │ ├── _mixins.scss
│ │ ├── _navigation.scss
│ │ ├── _notices.scss
│ │ ├── _page.scss
│ │ ├── _print.scss
│ │ ├── _reset.scss
│ │ ├── _search.scss
│ │ ├── _sidebar.scss
│ │ ├── _syntax.scss
│ │ ├── _tables.scss
│ │ ├── _utilities.scss
│ │ ├── _variables.scss
│ │ ├── skins/
│ │ │ ├── _air.scss
│ │ │ ├── _aqua.scss
│ │ │ ├── _catppuccin_latte.scss
│ │ │ ├── _catppuccin_mocha.scss
│ │ │ ├── _contrast.scss
│ │ │ ├── _dark.scss
│ │ │ ├── _default.scss
│ │ │ ├── _dirt.scss
│ │ │ ├── _mint.scss
│ │ │ ├── _neon.scss
│ │ │ ├── _plum.scss
│ │ │ └── _sunrise.scss
│ │ └── vendor/
│ │ ├── breakpoint/
│ │ │ ├── _breakpoint.scss
│ │ │ ├── _context.scss
│ │ │ ├── _helpers.scss
│ │ │ ├── _legacy-settings.scss
│ │ │ ├── _no-query.scss
│ │ │ ├── _parsers.scss
│ │ │ ├── _respond-to.scss
│ │ │ ├── _settings.scss
│ │ │ └── parsers/
│ │ │ ├── _double.scss
│ │ │ ├── _query.scss
│ │ │ ├── _resolution.scss
│ │ │ ├── _single.scss
│ │ │ ├── _triple.scss
│ │ │ ├── double/
│ │ │ │ ├── _default-pair.scss
│ │ │ │ ├── _default.scss
│ │ │ │ └── _double-string.scss
│ │ │ ├── resolution/
│ │ │ │ └── _resolution.scss
│ │ │ ├── single/
│ │ │ │ └── _default.scss
│ │ │ └── triple/
│ │ │ └── _default.scss
│ │ ├── magnific-popup/
│ │ │ ├── _magnific-popup.scss
│ │ │ └── _settings.scss
│ │ └── susy/
│ │ ├── _su.scss
│ │ ├── _susy-prefix.scss
│ │ ├── _susy.scss
│ │ ├── plugins/
│ │ │ ├── _svg-grid.scss
│ │ │ └── svg-grid/
│ │ │ ├── _prefix.scss
│ │ │ ├── _svg-api.scss
│ │ │ ├── _svg-grid-math.scss
│ │ │ ├── _svg-settings.scss
│ │ │ ├── _svg-unprefix.scss
│ │ │ └── _svg-utilities.scss
│ │ └── susy/
│ │ ├── _api.scss
│ │ ├── _normalize.scss
│ │ ├── _parse.scss
│ │ ├── _settings.scss
│ │ ├── _su-math.scss
│ │ ├── _su-validate.scss
│ │ ├── _syntax-helpers.scss
│ │ ├── _unprefix.scss
│ │ └── _utilities.scss
│ └── minimal-mistakes.scss
├── assets/
│ ├── css/
│ │ └── main.scss
│ └── js/
│ ├── _main.js
│ ├── lunr/
│ │ ├── lunr-en.js
│ │ ├── lunr-gr.js
│ │ ├── lunr-store.js
│ │ └── lunr.js
│ ├── plugins/
│ │ ├── gumshoe.js
│ │ ├── jquery.ba-throttle-debounce.js
│ │ ├── jquery.fitvids.js
│ │ ├── jquery.greedy-navigation.js
│ │ ├── jquery.magnific-popup.js
│ │ └── smooth-scroll.js
│ └── vendor/
│ └── jquery/
│ └── jquery-3.6.0.js
├── docs/
│ ├── Gemfile
│ ├── Rakefile
│ ├── _config.dev.yml
│ ├── _config.yml
│ ├── _data/
│ │ ├── authors.yml
│ │ ├── comments/
│ │ │ ├── chocolate-chip-cookies/
│ │ │ │ ├── comment-1473870213530.yml
│ │ │ │ ├── comment-1478213467992.yml
│ │ │ │ ├── comment-1500181304581.yml
│ │ │ │ └── comment-1500214855350.yml
│ │ │ ├── gemified-theme-beta/
│ │ │ │ ├── comment-1479508047505.yml
│ │ │ │ ├── comment-1480591890264.yml
│ │ │ │ ├── comment-1482532165381.yml
│ │ │ │ ├── comment-1483456786593.yml
│ │ │ │ ├── comment-1483457152038.yml
│ │ │ │ └── comment-1519412839827.yml
│ │ │ ├── layout-comments/
│ │ │ │ ├── comment-1470944006665.yml
│ │ │ │ ├── comment-1470944162041.yml
│ │ │ │ ├── comment-1472308473018.yml
│ │ │ │ ├── comment-1514406795156.yml
│ │ │ │ ├── comment-1514407115153.yml
│ │ │ │ └── comment-1538482988032.yml
│ │ │ ├── layout-header-image-horizontal/
│ │ │ │ ├── comment-1483124729757.yml
│ │ │ │ └── comment-1483128389943.yml
│ │ │ ├── layout-header-image-text-readability/
│ │ │ │ ├── comment-1474306861206.yml
│ │ │ │ ├── comment-1479253931238.yml
│ │ │ │ └── comment-1479265677846.yml
│ │ │ ├── layout-header-overlay-image/
│ │ │ │ ├── comment-1512840683260.yml
│ │ │ │ ├── comment-1513110608614.yml
│ │ │ │ ├── comment-1513111329875.yml
│ │ │ │ └── comment-1513111563922.yml
│ │ │ ├── layout-related-posts/
│ │ │ │ ├── comment-1500183131535.yml
│ │ │ │ └── comment-1500214974083.yml
│ │ │ ├── layout-sidebar-custom/
│ │ │ │ ├── comment-1519247076880.yml
│ │ │ │ ├── comment-1519247290410.yml
│ │ │ │ └── comment-1520748170396.yml
│ │ │ ├── layout-sidebar-nav-list/
│ │ │ │ ├── comment-1492811460488.yml
│ │ │ │ └── comment-1492812977693.yml
│ │ │ ├── layout-table-of-contents-post/
│ │ │ │ ├── comment-1512118683486.yml
│ │ │ │ ├── comment-1520683848241.yml
│ │ │ │ ├── comment-1527082094887.yml
│ │ │ │ ├── comment-1527500055863.yml
│ │ │ │ ├── comment-1527690060032.yml
│ │ │ │ ├── comment-1527690281769.yml
│ │ │ │ └── comment-1540422628114.yml
│ │ │ ├── markup-image-alignment/
│ │ │ │ └── comment-1534823211504.yml
│ │ │ ├── markup-more-images/
│ │ │ │ ├── comment-1472040323579.yml
│ │ │ │ └── comment-1472146638519.yml
│ │ │ ├── markup-syntax-highlighting/
│ │ │ │ ├── comment-1470969665387.yml
│ │ │ │ ├── comment-1478928407894.yml
│ │ │ │ ├── comment-1487758246637.yml
│ │ │ │ ├── comment-1505403032256.yml
│ │ │ │ ├── comment-1505403241808.yml
│ │ │ │ └── comment-1514836962551.yml
│ │ │ ├── post-future-date/
│ │ │ │ ├── comment-1472064560364.yml
│ │ │ │ └── comment-1472786137736.yml
│ │ │ ├── post-gallery/
│ │ │ │ ├── comment-1500055247314.yml
│ │ │ │ └── comment-1500056210776.yml
│ │ │ ├── post-modified/
│ │ │ │ ├── comment-1497284119888.yml
│ │ │ │ ├── comment-1497284892766.yml
│ │ │ │ └── comment-1520673777110.yml
│ │ │ ├── post-video-youtube/
│ │ │ │ ├── comment-1506623182288.yml
│ │ │ │ ├── comment-1506623710918.yml
│ │ │ │ └── comment-1506632190623.yml
│ │ │ └── welcome-to-jekyll/
│ │ │ ├── comment-1470942205700.yml
│ │ │ ├── comment-1470942247755.yml
│ │ │ ├── comment-1470942265819.yml
│ │ │ ├── comment-1470942493518.yml
│ │ │ ├── comment-1471823346931.yml
│ │ │ ├── comment-1471834988411.yml
│ │ │ ├── comment-1472786599470.yml
│ │ │ ├── comment-1474328950155.yml
│ │ │ ├── comment-1500505983331.yml
│ │ │ ├── comment-1507141538771.yml
│ │ │ ├── comment-1529792272424.yml
│ │ │ └── comment-1529794012288.yml
│ │ ├── navigation.yml
│ │ └── theme.yml
│ ├── _docs/
│ │ ├── 01-quick-start-guide.md
│ │ ├── 02-structure.md
│ │ ├── 03-installation.md
│ │ ├── 04-upgrading.md
│ │ ├── 05-configuration.md
│ │ ├── 06-overriding-theme-defaults.md
│ │ ├── 07-navigation.md
│ │ ├── 08-ui-text.md
│ │ ├── 09-authors.md
│ │ ├── 10-layouts.md
│ │ ├── 11-posts.md
│ │ ├── 12-pages.md
│ │ ├── 13-collections.md
│ │ ├── 14-helpers.md
│ │ ├── 15-utility-classes.md
│ │ ├── 16-stylesheets.md
│ │ ├── 17-javascript.md
│ │ ├── 18-history.md
│ │ ├── 19-contributing.md
│ │ ├── 20-docs-2-2.md
│ │ ├── 21-license.md
│ │ └── 22-faq.md
│ ├── _drafts/
│ │ └── post-draft.md
│ ├── _includes/
│ │ ├── after-content.html
│ │ ├── before-related.html
│ │ └── comments-providers/
│ │ └── scripts.html
│ ├── _pages/
│ │ ├── 404.md
│ │ ├── about.md
│ │ ├── archive-layout-with-content.md
│ │ ├── category-archive.md
│ │ ├── collection-archive.html
│ │ ├── edge-case.md
│ │ ├── home.md
│ │ ├── lorem-ipsum.md
│ │ ├── markup.md
│ │ ├── page-a.md
│ │ ├── page-archive.html
│ │ ├── page-b.md
│ │ ├── pets.md
│ │ ├── portfolio-archive.md
│ │ ├── post-archive-feature-rows.html
│ │ ├── recipes-archive.md
│ │ ├── sample-page.md
│ │ ├── sitemap.md
│ │ ├── splash-page.md
│ │ ├── tag-archive.md
│ │ ├── terms.md
│ │ └── year-archive.md
│ ├── _pets/
│ │ ├── lhasa-apso.md
│ │ └── tabby.md
│ ├── _portfolio/
│ │ ├── baz-boom-identity.md
│ │ ├── fizz-bang-identity.md
│ │ ├── foo-bar-website.md
│ │ └── ginger-gulp-identity.md
│ ├── _posts/
│ │ ├── 2009-05-15-edge-case-nested-and-mixed-lists.md
│ │ ├── 2009-06-01-edge-case-many-tags.md
│ │ ├── 2009-07-02-edge-case-many-categories.md
│ │ ├── 2009-08-06-edge-case-no-body-content.md
│ │ ├── 2009-09-05-edge-case-no-yaml-title.md
│ │ ├── 2009-10-05-edge-case-multiline-excerpt.md
│ │ ├── 2009-10-05-edge-case-title-should-not-overflow-the-content-area.md
│ │ ├── 2009-10-05-edge-case-very-long-title.md
│ │ ├── 2009-10-06-edge-case-broken-highlighting.md
│ │ ├── 2010-01-07-post-modified.md
│ │ ├── 2010-01-07-post-standard.md
│ │ ├── 2010-01-08-post-chat.md
│ │ ├── 2010-02-05-post-notice.md
│ │ ├── 2010-02-05-post-quote.md
│ │ ├── 2010-03-07-post-link.md
│ │ ├── 2010-06-02-post-video-youtube.md
│ │ ├── 2010-08-05-post-header-image-og-override.md
│ │ ├── 2010-08-05-post-header-overlay-image-og-override.md
│ │ ├── 2010-08-05-post-image-linked.md
│ │ ├── 2010-08-05-post-image-standard.md
│ │ ├── 2010-08-05-post-teaser-image-og-override.md
│ │ ├── 2010-08-06-post-image-linked-caption.md
│ │ ├── 2010-08-07-post-image-caption.md
│ │ ├── 2010-09-09-post-gallery.md
│ │ ├── 2010-09-10-post-twitter-embeds.md
│ │ ├── 2010-10-25-post-future-date.md
│ │ ├── 2012-01-02-layout-comments-disabled.md
│ │ ├── 2012-01-02-layout-comments.md
│ │ ├── 2012-01-02-layout-post-date-disabled.md
│ │ ├── 2012-01-02-layout-post-date.md
│ │ ├── 2012-01-02-layout-read-time-disabled.md
│ │ ├── 2012-01-02-layout-read-time.md
│ │ ├── 2012-01-02-layout-related-posts-disabled.md
│ │ ├── 2012-01-02-layout-related-posts.md
│ │ ├── 2012-01-02-layout-sharing-disabled.md
│ │ ├── 2012-01-02-layout-sharing.md
│ │ ├── 2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md
│ │ ├── 2012-01-03-layout-table-of-contents-include-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-indent-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-sticky.md
│ │ ├── 2012-03-14-layout-code-excerpt-generated.md
│ │ ├── 2012-03-14-layout-excerpt-defined.md
│ │ ├── 2012-03-14-layout-excerpt-generated.md
│ │ ├── 2012-03-15-layout-author-override.md
│ │ ├── 2012-03-15-layout-author-sidebar-disabled.md
│ │ ├── 2012-03-15-layout-header-image-external.md
│ │ ├── 2012-03-15-layout-header-image-horizontal.md
│ │ ├── 2012-03-15-layout-header-image-text-readability.md
│ │ ├── 2012-03-15-layout-header-image-vertical.md
│ │ ├── 2012-03-15-layout-header-overlay-color.md
│ │ ├── 2012-03-15-layout-header-overlay-image-tagline.md
│ │ ├── 2012-03-15-layout-header-overlay-image.md
│ │ ├── 2012-03-15-layout-more-tag.md
│ │ ├── 2012-03-15-layout-sidebar-custom.md
│ │ ├── 2012-03-15-layout-sidebar-nav-list.md
│ │ ├── 2012-05-22-markup-text-readability-wide-page.md
│ │ ├── 2012-05-22-markup-text-readability.md
│ │ ├── 2013-01-05-markup-title-with-markup.md
│ │ ├── 2013-01-05-markup-title-with-special-characters.md
│ │ ├── 2013-01-09-markup-text-alignment.md
│ │ ├── 2013-01-10-markup-image-alignment.md
│ │ ├── 2013-01-11-markup-html-tags-and-formatting.md
│ │ ├── 2013-05-22-markup-more-images.md
│ │ ├── 2013-08-16-markup-syntax-highlighting.md
│ │ ├── 2016-02-24-welcome-to-jekyll.md
│ │ ├── 2016-09-21-gemified-theme-alpha.md
│ │ ├── 2016-10-06-gemified-theme-beta.md
│ │ ├── 2017-01-23-layout-header-video.md
│ │ └── 2017-11-28-post-exclude-search.md
│ ├── _recipes/
│ │ ├── chocolate-chip-cookies.md
│ │ ├── oatmeal-cookies.md
│ │ └── peanut-butter-cookies.md
│ └── assets/
│ └── images/
│ ├── browserconfig.xml
│ └── manifest.json
├── index.html
├── minimal-mistakes-jekyll.gemspec
├── package.json
├── staticman.yml
└── test/
├── Gemfile
├── _config.yml
├── _data/
│ ├── authors.yml
│ └── navigation.yml
├── _pages/
│ ├── 404.md
│ ├── archive-layout-with-content.md
│ ├── category-archive-grid.md
│ ├── category-archive.md
│ ├── collection-archive-grid.html
│ ├── collection-archive.html
│ ├── edge-case-grid.md
│ ├── edge-case.md
│ ├── lorem-ipsum.md
│ ├── markup-grid.md
│ ├── markup.md
│ ├── page-a.md
│ ├── page-archive-grid.html
│ ├── page-archive.html
│ ├── page-b.md
│ ├── portfolio-archive.md
│ ├── post-archive-feature-rows.html
│ ├── recipes-archive.md
│ ├── sample-page.md
│ ├── search.md
│ ├── sitemap.md
│ ├── splash-page.md
│ ├── tag-archive-grid.md
│ ├── tag-archive.md
│ ├── terms.md
│ ├── year-archive-grid.md
│ └── year-archive.md
├── _pets/
│ ├── lhasa-apso.md
│ └── tabby.md
├── _portfolio/
│ ├── baz-boom-identity.md
│ ├── fizz-bang-identity.md
│ ├── foo-bar-website.md
│ └── ginger-gulp-identity.md
├── _posts/
│ ├── 2009-05-15-edge-case-nested-and-mixed-lists.md
│ ├── 2009-06-01-edge-case-many-tags.md
│ ├── 2009-07-02-edge-case-many-categories.md
│ ├── 2009-08-06-edge-case-no-body-content.md
│ ├── 2009-09-05-edge-case-no-yaml-title.md
│ ├── 2009-10-05-edge-case-multiline-excerpt.md
│ ├── 2009-10-05-edge-case-title-should-not-overflow-the-content-area.md
│ ├── 2009-10-05-edge-case-very-long-title.md
│ ├── 2010-01-07-post-modified.md
│ ├── 2010-01-07-post-standard.md
│ ├── 2010-01-08-post-chat.md
│ ├── 2010-02-05-post-notice.md
│ ├── 2010-02-05-post-quote.md
│ ├── 2010-03-07-post-link.md
│ ├── 2010-06-02-post-video-youtube.md
│ ├── 2010-08-05-post-header-image-og-override.md
│ ├── 2010-08-05-post-header-overlay-image-og-override.md
│ ├── 2010-08-05-post-image-linked.md
│ ├── 2010-08-05-post-image-standard.md
│ ├── 2010-08-05-post-teaser-image-og-override.md
│ ├── 2010-08-06-post-image-linked-caption.md
│ ├── 2010-08-07-post-image-caption.md
│ ├── 2010-09-09-post-gallery.md
│ ├── 2010-09-10-post-twitter-embeds.md
│ ├── 2010-10-25-post-future-date.md
│ ├── 2012-01-02-layout-comments-disabled.md
│ ├── 2012-01-02-layout-comments.md
│ ├── 2012-01-02-layout-post-date-disabled.md
│ ├── 2012-01-02-layout-post-date.md
│ ├── 2012-01-02-layout-read-time-disabled.md
│ ├── 2012-01-02-layout-read-time.md
│ ├── 2012-01-02-layout-related-posts-disabled.md
│ ├── 2012-01-02-layout-related-posts.md
│ ├── 2012-01-02-layout-sharing-disabled.md
│ ├── 2012-01-02-layout-sharing.md
│ ├── 2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md
│ ├── 2012-01-03-layout-table-of-contents-include-post.md
│ ├── 2012-01-03-layout-table-of-contents-indent-post.md
│ ├── 2012-01-03-layout-table-of-contents-post.md
│ ├── 2012-01-03-layout-table-of-contents-sticky.md
│ ├── 2012-03-14-layout-code-excerpt-generated.md
│ ├── 2012-03-14-layout-excerpt-defined.md
│ ├── 2012-03-14-layout-excerpt-generated.md
│ ├── 2012-03-15-layout-author-override.md
│ ├── 2012-03-15-layout-author-sidebar-disabled.md
│ ├── 2012-03-15-layout-header-image-external.md
│ ├── 2012-03-15-layout-header-image-horizontal.md
│ ├── 2012-03-15-layout-header-image-text-readability.md
│ ├── 2012-03-15-layout-header-image-vertical.md
│ ├── 2012-03-15-layout-header-overlay-color.md
│ ├── 2012-03-15-layout-header-overlay-image-tagline.md
│ ├── 2012-03-15-layout-header-overlay-image.md
│ ├── 2012-03-15-layout-more-tag.md
│ ├── 2012-03-15-layout-sidebar-custom.md
│ ├── 2012-03-15-layout-sidebar-nav-list.md
│ ├── 2012-05-22-markup-text-readability-wide-page.md
│ ├── 2012-05-22-markup-text-readability.md
│ ├── 2013-01-05-markup-title-with-markup.md
│ ├── 2013-01-05-markup-title-with-special-characters.md
│ ├── 2013-01-09-markup-text-alignment.md
│ ├── 2013-01-10-markup-image-alignment.md
│ ├── 2013-01-11-markup-html-tags-and-formatting.md
│ ├── 2013-05-22-markup-more-images.md
│ ├── 2013-08-16-markup-syntax-highlighting.md
│ ├── 2016-02-24-welcome-to-jekyll.md
│ ├── 2017-01-23-layout-header-video.md
│ └── 2017-11-28-post-exclude-search.md
├── _recipes/
│ ├── chocolate-chip-cookies.md
│ ├── oatmeal-cookies.md
│ └── peanut-butter-cookies.md
└── index.html
================================================
FILE CONTENTS
================================================
================================================
FILE: .editorconfig
================================================
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
[*.md]
trim_trailing_whitespace = false
================================================
FILE: .gitattributes
================================================
assets/fonts/* linguist-vendored
assets/js/main.min.js linguist-vendored
assets/js/lunr/* linguist-vendored
assets/js/plugins/* linguist-vendored
assets/js/vendor/* linguist-vendored
_sass/minimal-mistakes/vendor/* linguist-vendored
CHANGELOG.md text merge=union
docs/_docs/18-history.md text merge=union
*.md text
================================================
FILE: .github/CONTRIBUTING.md
================================================
# Contributing
Found a typo in the documentation or interested in [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
For help with using the theme or general Jekyll support questions, please use the [Jekyll Talk forums](https://talk.jekyllrb.com/).
Minimal Mistakes has been designed as a base for you to customize and fit your
site's unique needs. Please keep this in mind when requesting features and/or
submitting pull requests. If it's not something that most people will use, I
probably won't consider it. When in doubt ask.
This goes for author sidebar links and "share button" additions -- I have no
intention of merging in every possibly option, the essentials are there to get
you started :smile:.
## Pull Requests
When submitting a pull request:
1. Clone the repo.
2. Create a branch off of `master` and give it a meaningful name (e.g.
`my-awesome-new-feature`) and describe the feature or fix.
3. Open a pull request on GitHub.
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug Report
description: There is something wrong with the theme. 99% of the time you should select Support below.
body:
- type: markdown
attributes:
value: |
Before opening a new issue please:
- Verify you have the latest versions of Jekyll and Minimal Mistakes
installed by running `bundle update`.
- Thoroughly read the theme's documentation at
https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/
- Search all issues at https://github.com/mmistakes/minimal-mistakes/issues
for solutions and to avoid duplication.
- Ask for help at https://talk.jekyllrb.com/
If none of the above solved your problem, you can continue below.
- type: textarea
id: environment
attributes:
label: Theme version and system environment
description: |
Please include theme version, Jekyll version, public git repository, whether
you are hosting with GitHub Pages, and the operating system you tested with.
Issues without a link to a public repository or ZIP file will likely go ignored.
Being able to see your actual files is necessary to troubleshoot, as most
issues stem from invalid/missing YAML Front Matter, a mis-configured _config.yml
file, or problematic site content.
value: |-
- Minimal Mistakes version:
- Ruby gem or remote theme version:
- Jekyll version:
- Git repository URL:
- URL to the page with the problem:
- Operating system:
- Browser version:
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: |
Describe the problem **in detail**. For example:
- What is missing?
- What error do you see? Attach the error log if available.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: |
Please describe the expected behavior and the actual result you got.
placeholder: >
What is it you expected to happen? This should be a description of how the
functionality you tried to use is supposed to work.
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce the behavior
description: |
Describe the steps you took for this problem to come up. Such as: you installed
the theme, customized _config.yml, added your own posts, and started up a
Jekyll server locally.
If an error occurred on GitHub Pages when pushing, please test a local version
following these setup instructions:
https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/
Then provide a complete log by running `bundle exec jekyll build --trace --verbose`
and include this output in the filed issue.
Screenshots can also be included if they help illustrate a behavior.
validations:
required: true
- type: textarea
id: other
attributes:
label: Other
description: |
Please provide a code repository, gist, code snippet, sample files,
screenshots, or anything else you think will aid in reproducing the issue.
validations:
required: false
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: Support
url: https://github.com/mmistakes/minimal-mistakes/discussions
about: Please post your support questions in the Discussions section.
================================================
FILE: .github/ISSUE_TEMPLATE/documentation.yml
================================================
name: Documentation
description: Found a typo or something that needs clarification?
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to open an issue and help make the docs better.
- type: textarea
id: motivation
attributes:
label: Motivation
description: |
Why should we update our docs?
validations:
required: true
- type: textarea
id: suggestion
attributes:
label: Suggestion
description: |
What should we do instead?
validations:
required: true
================================================
FILE: .github/PULL_REQUEST_TEMPLATE.md
================================================
<!--
Thanks for creating a Pull Request! Before you submit, please make sure
you've done the following:
- Read the contributing document at https://github.com/mmistakes/minimal-mistakes#contributing
-->
<!--
Choose one of the following by uncommenting it:
-->
<!-- This is a bug fix. -->
<!-- This is an enhancement or feature. -->
<!-- This is a documentation change. -->
## Summary
<!--
Provide a description of what your pull request changes.
-->
## Context
<!--
Is this related to any GitHub issue(s)?
-->
<!--
Please confirm that you want to submit this Pull Request to Minimal Mistakes, the free Jekyll theme by Michael Rose, by deleting this comment block.
-->
================================================
FILE: .github/workflows/bad-pr.yml
================================================
name: Cleanup bad PR
on:
pull_request_target:
types: [opened, reopened]
permissions:
contents: read
jobs:
close-pr:
permissions:
pull-requests: write
runs-on: ubuntu-slim
if: "contains(github.event.pull_request.body, 'by deleting this comment block') || github.event.pull_request.body == ''"
steps:
- uses: actions-ecosystem/action-add-labels@v1
with:
labels: |
Type: Invalid
Type: Spam
- uses: superbrothers/close-pull-request@v3
with:
# Optional. Post an issue comment just before closing a pull request.
comment: |
**You have created a Pull Request to the wrong repository.** This is the repository for [Minimal Mistakes][1], the free Jekyll theme. See [GitHub Docs: About pull requests][2] if you need help.
[1]: https://mmistakes.github.io/minimal-mistakes/
[2]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests
- uses: sudo-bot/action-pull-request-lock@v1.0.5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
number: ${{ github.event.pull_request.number }}
lock-reason: spam
================================================
FILE: .github/workflows/build.yml
================================================
name: build
on:
push:
branches:
- master
workflow_dispatch: {}
repository_dispatch: {}
jobs:
build:
if: github.repository == 'mmistakes/minimal-mistakes'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Setup cache for Bundler
id: cache
uses: actions/cache@v4
with:
path: |
docs/Gemfile.lock
docs/vendor/bundle
key: ${{ runner.os }}-bundler-${{ hashFiles('docs/Gemfile') }}
restore-keys: |
${{ runner.os }}-bundler-
- name: Install - Bundler
env:
MAKE: make -j2
working-directory: docs/
run: |
bundle config set path vendor/bundle
bundle install --jobs=4 --retry=3
bundle clean
- name: Update Algolia index
working-directory: docs/
run: bundle exec jekyll algolia push
env:
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
continue-on-error: true
================================================
FILE: .gitignore
================================================
# Vim
*~
*.sw[p_]
# IntelliJ IDEA
*.idea
# Sublime Text
*.sublime-project
*.sublime-workspace
# Ruby Gem
*.gem
.bundle
Gemfile.lock
**/vendor/bundle
# Node.js and NPM
node_modules
npm-debug.log*
package-lock.json
codekit-config.json
# macOS
.DS_Store
# Jekyll generated files
.jekyll-cache
.jekyll-metadata
.sass-cache
_asset_bundler_cache
_site
================================================
FILE: CHANGELOG.md
================================================
# Changelog
## [4.28.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.28.0)
### Enhancements
- Updated Traditional Chinese translation (#5250)
- Add built-in support for jekyll-gfm-admonitions (#5312)
- Add Latte and Mocha skins from Catppuccin project (#5341)
- Add support for Swetrix, a GDPR-compliant analytics provider (#5344)
- Support resolving `ui-text` using `page.locale` when available (#5439)
- Add `aria-label` to all nav elements for WCAG compliance (#5442)
- Add IndieWeb microformat support and configurable footer `rel` attribute (#5443)
- Add `og:image:alt` and `twitter:image:alt` support (#5444)
- Add `fediverse:creator` meta tag for link preview attribution (#5445)
- Update hardcoded icon classes for Font Awesome 6 (#5446)
- Add missing brand-color rules for newer social platforms (#5447)
- Add custom sidebar content hook (#5448)
- Add config toggle to suppress taxonomy display on posts (#5449)
- Minor changes to the PR auto labeling GitHub Actions workflow
Special thanks to @bexelbie for their contributions in this release.
### Bug Fixes
- Fix some social icon colors and missing Korean translations (#5103)
## [4.27.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.3)
### Bug Fixes
- Add explicit CSS rules for `.sr-only` following Font Awesome 7's changes. (#5296)
## [4.27.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.2)
### Enhancements
- Hide `.page__footer-follow` if there are no links nor atom feed. (#5279)
- Add HTML escaping for some titles, labels and metada that was missing. (#5276)
- Add optional `footer.since` for copyright time range. (#5275)
### Bug Fixes
- Add `escape_once` to gallery title and alt text.
## [4.27.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.1)
### Enhancements
- Add a "Share on Bluesky" button (#5179)
- Add preset variables for modern font stack (#5033)
- Update X share button to match brand color (#5245)
### Bug Fixes
- Fix wrong icon and color for X share button.
## [4.27.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.0)
### Enhancements
- Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886)
- Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890)
- Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
- Remove unnecessary "type" attribute (#4956)
- The "if" means the default is never used (#4955)
- For pages without a title, show the site title only once (#4959)
- Use `documents-collection.html` partial in `home` layout.
- Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003)
- Add provider and comments info to `single.html` layout for non-production. (#5068)
- Tweak contrast skin $primary-color to adhere to WCAG guidelines. (#5126)
- Update social share buttons to reflect Twitter rebranding to X (#5210)
### Bug Fixes
- Replace a redirected link to MadeMistakes in footer. [#4882](https://github.com/mmistakes/minimal-mistakes/pull/4882)
- Fix wrong float direction for `feature_row` with `type="right"`. [#4061](https://github.com/mmistakes/minimal-mistakes/issues/4061)
- Fix reset stylesheet overruling `$doc-font-size`. [#4983](https://github.com/mmistakes/minimal-mistakes/issues/4983)
- Fix JavaScript null error on home and splash layouts. [#4938](https://github.com/mmistakes/minimal-mistakes/issues/4938), [#4939](https://github.com/mmistakes/minimal-mistakes/pull/4939)
- Fix bad <figure> HTML if "alt" contains quotes.
- Fix extra newline generated in `_includes/post_pagination.html`.
- Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042)
- Fix typo in "Configuration" (#5106)
- bundle exec jekyll serve will fail if more than once (#5193)
### Documentation & Maintenance
- Automatically update Algolia search index with GitHub Actions.
## [4.26.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.26.2)
### Enhancements
- Add Czech localization. [#4866](https://github.com/mmistakes/minimal-mistakes/pull/4866)
- Allow overriding HTML `lang` attribute on a per-page basis. [#4862](https://github.com/mmistakes/minimal-mistakes/pull/4862)
### Bug Fixes
- Figure helper breaks when using code markup in caption with `popup=true`. [#4841](https://github.com/mmistakes/minimal-mistakes/issues/4841)
## [4.26.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.26.1)
### Bug Fixes
- Disable copy button on invalid syntax highlighting blocks to avoid positioning issues.
- Fix typo for `fa-dribbble` in `_utilities.scss`.
- Restrict "auto scroll sticky ToC to content" feature to Chromium browsers for now. [#4826](https://github.com/mmistakes/minimal-mistakes/issues/4826)
### Documentation & Maintenance
- Rewrite social icons SCSS with a loop.
### Enhancements
- Change the icon of a copy button into a tick for 1.5 seconds on successful copy.
## [4.26.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.26.0)
### Bug Fixes
- Fix an unclosed `<p>` tag in `page__hero.html`, near `page.header.actions`.
- Remove overlay and revert X to hamburger icon when popup disappears. [#3958](https://github.com/mmistakes/minimal-mistakes/pull/3958)
- Fix SEO title when it contains a vertical bar. [#3094](https://github.com/mmistakes/minimal-mistakes/pull/3094) [#3113](https://github.com/mmistakes/minimal-mistakes/pull/3113)
- Remove "sticky sidebar" JS as it's now completely based on CSS media queries. [#4245](https://github.com/mmistakes/minimal-mistakes/issues/4245) [#4645](https://github.com/mmistakes/minimal-mistakes/pull/4645)
### Enhancements
- Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)
- Add "copy to clipboard" button for code blocks 🎉 [#2812](https://github.com/mmistakes/minimal-mistakes/pull/2812)
- Auto scroll sticky ToC with content. [#3115](https://github.com/mmistakes/minimal-mistakes/pull/3115)
- Replace "hidden" check in Liquid templates with `where_exp: "item", "item.hidden != true"`.
- Remove deprecated `page.header.cta_url` setting. [#4821](https://github.com/mmistakes/minimal-mistakes/pull/4821)
- Allow multiple nav lists in sidebar. [#2843](https://github.com/mmistakes/minimal-mistakes/pull/2843)
- Add popup parameter to `{% include figure %}` to enable Magnific Popup. [#3119](https://github.com/mmistakes/minimal-mistakes/pull/3119)
- Add target attribute for navigation link. [#3056](https://github.com/mmistakes/minimal-mistakes/pull/3056)
- Split schema to a separate include file. [#3085](https://github.com/mmistakes/minimal-mistakes/pull/3085)
- Cleanup `_includes/seo.html`.
### Documentation & Maintenance
- Rewrite skin previews on `05-configuration.md` in Liquid template.
- Remove unused classes from `_layouts/single.html`.
- Migrate npm run scripts to Ruby Rake tasks.
- Add Rake task `version` for updating all hard-coded version numbers from `package.json` all at once.
- Merge `categories` and `tags` layout into `_includes/posts-taxonomy.html`.
- Update Social Sharing links section. [#4066](https://github.com/mmistakes/minimal-mistakes/pull/4066)
## [4.25.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.1)
### Bug Fixes
- "You may also enjoy" no longer recommends hidden posts. [#4653](https://github.com/mmistakes/minimal-mistakes/issues/4653)
- Replaced dead link to "Viewport and Media Queries" slides. [#4421](https://github.com/mmistakes/minimal-mistakes/discussions/4421)
- Fix broken `where_exp` in `lunr-store.js` for Jekyll < 4.0. [#4808](https://github.com/mmistakes/minimal-mistakes/issues/4808)
### Enhancements
- Add Ukrainian translations. [#4273](https://github.com/mmistakes/minimal-mistakes/pull/4273)
- Add more configuration for Giscus. [#4274](https://github.com/mmistakes/minimal-mistakes/pull/4274)
- Bump jekyll-toc to [v1.2.1](https://github.com/allejo/jekyll-toc/releases/tag/v1.2.1).
### Documentation & Maintenance
- Bump shell-quote from 1.7.1 to 1.7.3 [#3692](https://github.com/mmistakes/minimal-mistakes/issues/3692)
- Add `after-content.html` and `before-related.html` includes to ease docs site overrides.
- GitHub Workflows security hardening [#3884](https://github.com/mmistakes/minimal-mistakes/issues/3884)
- Replace Font Awesome v5 search page with v6.
- Try adding an FAQ page.
- Update remote theme reference in Quick-Start Guide to point to 4.25.0. [#4809](https://github.com/mmistakes/minimal-mistakes/issues/4809)
## [4.25.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.25.0)
### Bug Fixes
- Fix Linkedin social share link [#4754](https://github.com/mmistakes/minimal-mistakes/issues/4754)
- Fix non-English characters being url encoded in breadcrumb [#3819](https://github.com/mmistakes/minimal-mistakes/issues/3819)
- Fix wrong `first_page_path` because of hard-coded `page:num` [#3778](https://github.com/mmistakes/minimal-mistakes/issues/3778)
- Remove JS and other files from search index [#4000](https://github.com/mmistakes/minimal-mistakes/pull/4000)
- Fix unlisted YouTube video embeds in documentation/test sites. [#3649](https://github.com/mmistakes/minimal-mistakes/issues/3649)
- Fix error in Algolia search script when returning a hit that without `html` and `hightlight.html`. [#3101](https://github.com/mmistakes/minimal-mistakes/issues/3101) [#3102](https://github.com/mmistakes/minimal-mistakes/pull/3102)
- Fix inline code style not applied to stylized text. [#3253](https://github.com/mmistakes/minimal-mistakes/pull/3253)
- Fix Keybase icon in author sidebar. [#3221](https://github.com/mmistakes/minimal-mistakes/pull/3221)
- Fix sort order of Staticman comments when data files aren't named alphabetically. [#3184](https://github.com/mmistakes/minimal-mistakes/pull/3184)
- Fix `layout: compress` issue with HTML comment in video include. [#3117](https://github.com/mmistakes/minimal-mistakes/pull/3117)
- Add Magnific Popup class to anchors that only contain an `img` element. [#3111](https://github.com/mmistakes/minimal-mistakes/issues/3111) [#3114](https://github.com/mmistakes/minimal-mistakes/pull/3114)
- Fix heading level of related posts section from `h4` to `h2` to improve accessibility and SEO. [#3064](https://github.com/mmistakes/minimal-mistakes/pull/3064)
- Fix grammar error in German localized UI text string. [#3063](https://github.com/mmistakes/minimal-mistakes/pull/3063)
- Remove site.url from first breadcrumb link. [#3051](https://github.com/mmistakes/minimal-mistakes/pull/3051)
### Enhancements
- Add `site.copyright` and `site.copyright_url` config options [#4313](https://github.com/mmistakes/minimal-mistakes/pull/4313)
- Lazy-load InstantSearch scripts and stylesheets [#3691](https://github.com/mmistakes/minimal-mistakes/pull/3691)
- Improve Finnish translations [#4595](https://github.com/mmistakes/minimal-mistakes/pull/4595)
- Remove redundant downcase from \_layouts/categories.html. [#4531](https://github.com/mmistakes/minimal-mistakes/pull/4531)
- Load latest Font Awesome package. [#3765](https://github.com/mmistakes/minimal-mistakes/pull/3765)
- Add missing Polish missing UI text strings. [#3969](https://github.com/mmistakes/minimal-mistakes/pull/3969)
- Update breadcrumbs conditional to enable/disable them via Front Matter on pages using `layout: single`. [#3096](https://github.com/mmistakes/minimal-mistakes/pull/3096) [#3669](https://github.com/mmistakes/minimal-mistakes/pull/3669)
- Remove Internet Explorer 9 upgrade notice. [#3666](https://github.com/mmistakes/minimal-mistakes/pull/3666)
- Add Kiswahili localized UI text strings. [#3489](https://github.com/mmistakes/minimal-mistakes/pull/3489)
- Exclude `main.scss` from Lunr search index.
- Allow `site.pages` to be indexed and searched via Lunr. [#3352](https://github.com/mmistakes/minimal-mistakes/pull/3352)
- Update jQuery to v3.6.0. [#3254](https://github.com/mmistakes/minimal-mistakes/pull/3254)
- Use notice `<a>` colors for blockquotes that have `notice--` classes applied. [#3140](https://github.com/mmistakes/minimal-mistakes/pull/3140) [#3068](https://github.com/mmistakes/minimal-mistakes/issues/3068)
- Add sameAs itemprop to author link. [#3087](https://github.com/mmistakes/minimal-mistakes/pull/3087)
- Update and add missing Brazilian Portuguese translations. [#3204](https://github.com/mmistakes/minimal-mistakes/pull/3204)
- Add optional label attribute for utterances comments. [#3128](https://github.com/mmistakes/minimal-mistakes/pull/3128)
- Add missing Danish translations. [#3095](https://github.com/mmistakes/minimal-mistakes/pull/3095)
- Add ARIA role to search forms. [#3086](https://github.com/mmistakes/minimal-mistakes/pull/3086)
- Add overflow scroll bar to sticky table of contents that are taller than the viewport's height. [#2874](https://github.com/mmistakes/minimal-mistakes/pull/2874)
- Add Microformats markup. [#3052](https://github.com/mmistakes/minimal-mistakes/pull/3052)
### Documentation & Maintenance
- Fix links to Font Awesome gallery. [#3599](https://github.com/mmistakes/minimal-mistakes/pull/3599)
- Fix GreedyNav.js attribution link. [#3553](https://github.com/mmistakes/minimal-mistakes/pull/3553)
- Fix typo about loading JavaScript in layout documentation. [#3350](https://github.com/mmistakes/minimal-mistakes/pull/3350)
- Fix documentation typos. [#3232](https://github.com/mmistakes/minimal-mistakes/pull/3232) [#3318](https://github.com/mmistakes/minimal-mistakes/pull/3318)
- Add link to documentation clarifying how to add plugins. [#3181](https://github.com/mmistakes/minimal-mistakes/pull/3181)
- Fix broken documentation link and add Baidu site verification to `_config.yml` files. [#3139](https://github.com/mmistakes/minimal-mistakes/pull/3139)
- Bump path-parse from 1.0.6 to 1.0.7. [#3116](https://github.com/mmistakes/minimal-mistakes/pull/3116)
- Automatically close invalid PRs using GitHub Actions. [#3313](https://github.com/mmistakes/minimal-mistakes/pull/3313)
- Add instructions on how to unminify `main.js` for easier browser debugging. [#3055](https://github.com/mmistakes/minimal-mistakes/pull/3055)
- Consolidate hard-coded version numbers where possible.
- Add Rakefile for automatically syncing CHANGELOG with history and synched them.
## [4.24.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.24.0)
### Bug Fixes
- Fix README text for Gumshoejs license. [#3024](https://github.com/mmistakes/minimal-mistakes/pull/3024)
- Remove `tabindex="-1"` from `input` elements in `search.html` layout to allow them to be accessible by keyboard. [#2982](https://github.com/mmistakes/minimal-mistakes/issues/2982)
- Fix broken sidebar image in sample post. [#3013](https://github.com/mmistakes/minimal-mistakes/issues/3013)
- Fix broken links in Upgrading documentation. [#3004](https://github.com/mmistakes/minimal-mistakes/issues/3004)
### Enhancements
- Remove IE9 flexbox fallback. [#3042](https://github.com/mmistakes/minimal-mistakes/pull/3042)
- Remove `h2` from skip links navigation as it is not important for site structure. [#3012](https://github.com/mmistakes/minimal-mistakes/pull/3012)
- Loads Font Awesome asynchronously. [#2967](https://github.com/mmistakes/minimal-mistakes/pull/2967)
- Replace custom search icon SVG with Font Awesome icon. [#2774](https://github.com/mmistakes/minimal-mistakes/pull/2774)
- Adds support for giscus comments. [#3022](https://github.com/mmistakes/minimal-mistakes/pull/3022)
## [4.23.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.23.0)
### Enhancements
- Add Arabic (عربي) localized UI text strings. [#2936](https://github.com/mmistakes/minimal-mistakes/pull/2936)
- Update onchange and uglify-js dependencies.
- Document head and footer `custom.html` includes. [#2815](https://github.com/mmistakes/minimal-mistakes/pull/2815)
- Color notices based on skin colors instead of fixed values. [#2887](https://github.com/mmistakes/minimal-mistakes/pull/2887)
- Add configurable datetime format. [#2844](https://github.com/mmistakes/minimal-mistakes/pull/2844)
- Add Baidu site verification [#2830](https://github.com/mmistakes/minimal-mistakes/pull/2830)
- Add `alt` attribute to site logo. [#2529](https://github.com/mmistakes/minimal-mistakes/issues/2529) [#2824](https://github.com/mmistakes/minimal-mistakes/issues/2824)
### Bug Fixes
- Fix menu toggle to properly show close icon when open.
- Fix Jekyll environment note in configuration documentation. [#2912](https://github.com/mmistakes/minimal-mistakes/issues/2912)
- Fix typo in Helpers documentation. [#2940](https://github.com/mmistakes/minimal-mistakes/pull/2940)
- Remove all references to official public Staticman API instance. [#2818](https://github.com/mmistakes/minimal-mistakes/issues/2818) [#2831](https://github.com/mmistakes/minimal-mistakes/pull/2831)
- Remove Google Search CSS. [#2852](https://github.com/mmistakes/minimal-mistakes/issues/2852) [#2855](https://github.com/mmistakes/minimal-mistakes/pull/2855)
## [4.22.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.22.0)
### Bug Fixes
- Remove Google Search script from `404.md`. [#2597](https://github.com/mmistakes/minimal-mistakes/issues/2597) [#2737](https://github.com/mmistakes/minimal-mistakes/pull/2737) [#2789](https://github.com/mmistakes/minimal-mistakes/pull/2789)
- Fix Font Awesome icon color in `contrast`, `dark`, `mint`, `neon`, `plum`, and `sunrise` skins. [#2724](https://github.com/mmistakes/minimal-mistakes/issues/2724)
### Enhancements
- Allow custom sorting for collections. [#2723](https://github.com/mmistakes/minimal-mistakes/pull/2723)
- Use `sort_natural` instead of custom Liquid logic to sort tags and categories. [#2756](https://github.com/mmistakes/minimal-mistakes/pull/2756)
- Add configuration option to toggle off RSS feed link in `<head>` and site footer. [#2787](https://github.com/mmistakes/minimal-mistakes/pull/2787)
- Upgrade Lunrjs to 2.3.9 and switch to `relative_url`. [#2805](https://github.com/mmistakes/minimal-mistakes/pull/2805)
- Adds `.webp` to list of supported image extensions for the image popup lightbox. [#2788](https://github.com/mmistakes/minimal-mistakes/pull/2788)
- Add Hebrew localized UI text strings. [#2760](https://github.com/mmistakes/minimal-mistakes/pull/2760)
- Update documentation to include `toc_sticky` parameter's description. [#2741](https://github.com/mmistakes/minimal-mistakes/pull/2741)
- Update Indonesian localized UI text strings. [#2731](https://github.com/mmistakes/minimal-mistakes/pull/2731)
- Update remote theme documentation. [#2734](https://github.com/mmistakes/minimal-mistakes/pull/2734)
- Update allejo/jekyll-toc to v1.1.0, skip headings without an ID. [#2752](https://github.com/mmistakes/minimal-mistakes/pull/2752)
- Allow custom gradient for page header overlay. [#2806](https://github.com/mmistakes/minimal-mistakes/pull/2806)
## [4.21.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.21.0)
### Bug Fixes
- Fix greedy navigation by improving reliability of remaining space for visible links. [#2664](https://github.com/mmistakes/minimal-mistakes/issues/2664)
- Collapse white-space in `figure` helper to fix issues when used in Markdown ordered and unordered lists. [#2697](https://github.com/mmistakes/minimal-mistakes/pull/2697)
- Fix dead link to CI services in documentation. [#2635](https://github.com/mmistakes/minimal-mistakes/issues/2635) [#2692](https://github.com/mmistakes/minimal-mistakes/pull/2692)
- Fix a small typo in documentation. [#2718](https://github.com/mmistakes/minimal-mistakes/pull/2718)
### Enhancements
- Update jQuery to 3.5.1. [#2713](https://github.com/mmistakes/minimal-mistakes/pull/2713)
- Add Indonesian localized UI text strings. [#2725](https://github.com/mmistakes/minimal-mistakes/pull/2725)
- Update Vietnamese localized UI text strings. [#2722](https://github.com/mmistakes/minimal-mistakes/pull/2722)
- Add Norwegian (Norsk) localized UI text strings. [#2702](https://github.com/mmistakes/minimal-mistakes/pull/2702)
- Update allejo/jekyll-toc to v1.0.14 [#2700](https://github.com/mmistakes/minimal-mistakes/pull/2700)
## [4.20.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.2)
### Bug Fixes
- Fix broken link in documentation. [#2677](https://github.com/mmistakes/minimal-mistakes/issues/2677)
- Fix typo in documentation. [#2678](https://github.com/mmistakes/minimal-mistakes/issues/2678)
- Remove duplicate CSS definitions. [#2666](https://github.com/mmistakes/minimal-mistakes/pull/2666)
- Fix `entries_layout: grid` in various layouts. [#2639](https://github.com/mmistakes/minimal-mistakes/issues/2639)
- Change `fa` to `fas` for Font Awesome 5. [#2649](https://github.com/mmistakes/minimal-mistakes/pull/2649)
### Enhancements
- Refactor page meta include. [#2641](https://github.com/mmistakes/minimal-mistakes/pull/2641)
- Add `article:author` Open Graph markup. [#2670](https://github.com/mmistakes/minimal-mistakes/pull/2670)
## [4.20.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.1)
### Bug Fixes
- Fix grid `entries_layout` in home.html. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
### Bug Fixes
- Add `relative_url` filter to author home link [#2575](https://github.com/mmistakes/minimal-mistakes/pull/2575)
- Fix `analytics.provider` config comment to list all analytics providers. [#2607](https://github.com/mmistakes/minimal-mistakes/pull/2607)
- Fix typo in installation documentation. [#2570](https://github.com/mmistakes/minimal-mistakes/pull/2570)
- Fix broken Lunr search with Jekyll v4.1.0. [#2617](https://github.com/mmistakes/minimal-mistakes/pull/2617)
### Enhancements
- Add an optional date alongside the reading time. To enable set `show_date: true` similar to how reading time is. [#2526](https://github.com/mmistakes/minimal-mistakes/pull/2526)
- Remove hidden posts from posts.html layout. [#2625](https://github.com/mmistakes/minimal-mistakes/pull/2625)
- Add entry layout configuration for `list` (default) or `grid` views on `layout: home`. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
- Add missing Chinese translations. [#2576](https://github.com/mmistakes/minimal-mistakes/pull/2576)
- Improve Chinese translations. [#2626](https://github.com/mmistakes/minimal-mistakes/pull/2626)
- Add `line-height` to `h4` element in notice helper. [#2602](https://github.com/mmistakes/minimal-mistakes/pull/2602)
- Improve Algolia search. [#2572](https://github.com/mmistakes/minimal-mistakes/pull/2572)
- Update link to wtfpl license in README. [#2571](https://github.com/mmistakes/minimal-mistakes/pull/2571)
- Ignore teaser headline in table of contents when including posts list in another page. [#2558](https://github.com/mmistakes/minimal-mistakes/pull/2558)
- Replace Font Awesome Kits with CSS from jsDelivr CDN. [#2583](https://github.com/mmistakes/minimal-mistakes/pull/2583)
- Add `danmaku` option to Bilibili video provider and add corresponding documentation/ [#2599](https://github.com/mmistakes/minimal-mistakes/pull/2599)
- Update documentation about loading l10n data file from the theme-gem. [#2621](https://github.com/mmistakes/minimal-mistakes/issues/2621) [#2624](https://github.com/mmistakes/minimal-mistakes/pull/2624)
## [4.19.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.3)
### Enhancements
- Update GreedyNav.js to reduce masthead link overflow/shifting on mobile devices. [#2551](https://github.com/mmistakes/minimal-mistakes/issues/2551)
- Replace `<section id="custom-comments"></section>` in `comments.html` include and add `custom_scripts.html` include for loading custom comment provider JavaScript in the footer. [#2549](https://github.com/mmistakes/minimal-mistakes/issues/2549)
- Move page date Liquid to include. [#2544](https://github.com/mmistakes/minimal-mistakes/pull/2544)
- Strip trailing whitespace in `seo_description`. [#2542](https://github.com/mmistakes/minimal-mistakes/pull/2542)
- Improve sticky sidebar's appearance with short content. [#2514](https://github.com/mmistakes/minimal-mistakes/pull/2514)
## [4.19.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.2)
### Enhancements
- Add support for bilibili videos in [responsive video helper](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#responsive-video-embed). [#2512](https://github.com/mmistakes/minimal-mistakes/pull/2512)
- Add Myanmar (Burmese) localized UI text strings. [#2500](https://github.com/mmistakes/minimal-mistakes/pull/2500)
- Improve author links underline on hover. [#2472](https://github.com/mmistakes/minimal-mistakes/pull/2472)
- Add documentation for applying Front Matter defaults to jekyll-archives pages. [#2466](https://github.com/mmistakes/minimal-mistakes/pull/2466)
- Add missing Vietnamese translations. [#2459](https://github.com/mmistakes/minimal-mistakes/pull/2459) [#2486](https://github.com/mmistakes/minimal-mistakes/pull/2486)
- Fix Finnish localized UI text strings. [#2455](https://github.com/mmistakes/minimal-mistakes/pull/2455)
- Clarify documentation that Lunr only searches documents in collections. [#2450](https://github.com/mmistakes/minimal-mistakes/pull/2450)
- Add guide on applying Front Matter defaults to jekyll-archives pages [#2466](https://github.com/mmistakes/minimal-mistakes/pull/2466)
### Bug Fixes
- Fix typo in configuration documentation. [#2497](https://github.com/mmistakes/minimal-mistakes/pull/2497)
- Fix "Follow menu falls under post links" on small screens. [#2479](https://github.com/mmistakes/minimal-mistakes/issues/2479)
- Hide index page from page-archive. [#2482](https://github.com/mmistakes/minimal-mistakes/pull/2482)
## [4.19.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.1)
### Enhancements
- Add [Dracula](https://draculatheme.com/) Base16 syntax highlighting theme Sass variables to [stylesheets documentation](https://mmistakes.github.io/minimal-mistakes/docs/stylesheets/#syntax-highlighting). [#2438](https://github.com/mmistakes/minimal-mistakes/pull/2438)
- Update links to `HTTPS` and remove Google+ from configuration documentation. [#2432](https://github.com/mmistakes/minimal-mistakes/pull/2432)
- Use `first_page_path` from jekyll-paginate-v2 if available. [#2431](https://github.com/mmistakes/minimal-mistakes/pull/2431)
- Update onchange and uglify-js dependencies.
- Update smooth-scroll.js to `v16.1.2`. [#2430](https://github.com/mmistakes/minimal-mistakes/issues/2430)
### Bug Fixes
- Fix author profile links `z-index` order on small screens. [#2440](https://github.com/mmistakes/minimal-mistakes/issues/2440)
## [4.19.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.0)
### Enhancements
- Add "click" overlay to close masthead and follow button menus when open. [#1168](https://github.com/mmistakes/minimal-mistakes/issues/1168)
- Remove deprecated Staticman v1 configurations from `_config.yml`. [#2386](https://github.com/mmistakes/minimal-mistakes/issues/2386)
- Use `relative_url` and `absolute_url` filters where possible. [#2387](https://github.com/mmistakes/minimal-mistakes/pull/2387)
- Improve headline hierarchy and add Sass specific variables `$h-size-x`. [#2423](https://github.com/mmistakes/minimal-mistakes/issues/2423)
- Improve accessibility of `default` skin by increasing color contrast of text and links.
- Hide posts with `hidden: true` YAML front matter from appearing in listings. [#2345](https://github.com/mmistakes/minimal-mistakes/pull/2345)
- Add Irish (Gaeilge) localized UI text strings. [#2422](https://github.com/mmistakes/minimal-mistakes/pull/2422)
- Remove `box-shadow` on radio and checkbox inputs. [#2398](https://github.com/mmistakes/minimal-mistakes/pull/2398)
- Bump Jekyll gem dependency to `v3.7`.
### Bug Fixes
- Fix documentation around using `bundle info` command. [#2425](https://github.com/mmistakes/minimal-mistakes/pull/2425)
- Fix rake vulnerability in `.gemspec` file.
- Fix Staticman v2 comment submission. [#2402](https://github.com/mmistakes/minimal-mistakes/pull/2402)
- Fix repeated site base path for masthead logo. [#2385](https://github.com/mmistakes/minimal-mistakes/pull/2385)
## [4.18.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.18.1)
### Bug Fixes
- Fix compatibility issue with jekyll-paginate-v2. [#2381](https://github.com/mmistakes/minimal-mistakes/pull/2381)
## [4.18.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.18.0)
### Enhancements
- Allow `home` layout to display posts without pagination. [#2378](https://github.com/mmistakes/minimal-mistakes/pull/2378)
- Add links to high resolution skin screenshots in README. [#2363](https://github.com/mmistakes/minimal-mistakes/issues/2363)
- Update README and LICENSE. [#2367](https://github.com/mmistakes/minimal-mistakes/pull/2367)
- Update `.gitignore` file. [#2366](https://github.com/mmistakes/minimal-mistakes/pull/2366)
- Allow override of page excerpt in hero header via `tagline` YAML front matter. [#2307](https://github.com/mmistakes/minimal-mistakes/pull/2307)
- Exclude `package-lock.json` from Jekyll build. [#2364](https://github.com/mmistakes/minimal-mistakes/pull/2364)
- Use `%-d` instead of `%d` so displayed dates aren't padded with zero. [#2359](https://github.com/mmistakes/minimal-mistakes/pull/2359)
- Update table of contents helper (`toc.html`) to [v1.0.8](https://github.com/allejo/jekyll-toc/releases). [#2355](https://github.com/mmistakes/minimal-mistakes/pull/2355)
- Add missing Dutch localized UI text strings. [#2321](https://github.com/mmistakes/minimal-mistakes/pull/2321)
- Support page header (hero) in `archive-taxonomy` layout. [#2320](https://github.com/mmistakes/minimal-mistakes/pull/2320)
- Add social icon color for Keybase. [#2302](https://github.com/mmistakes/minimal-mistakes/pull/2302)
### Bug Fixes
- Fix JavaScript comments in Disqus include to be compatible with `compress` layout. [#2373](https://github.com/mmistakes/minimal-mistakes/pull/2373)
- Fix wrong newline concatenation in SEO description [#2368](https://github.com/mmistakes/minimal-mistakes/pull/2368) [#2354](https://github.com/mmistakes/minimal-mistakes/issues/2354)
- Fix Staticman v2/v3 conditional for showing comments. [#2351](https://github.com/mmistakes/minimal-mistakes/pull/2351)
- Fix masthead logo path. [#2332](https://github.com/mmistakes/minimal-mistakes/pull/2332)
- Fix schema.org dates to ISO-8601. [#2339](https://github.com/mmistakes/minimal-mistakes/pull/2339)
- Fix background color of code blocks in notices. [#2328](https://github.com/mmistakes/minimal-mistakes/pull/2328)
- Fix alignment of feature rows when placed next to a sticky sidebar. [#2327](https://github.com/mmistakes/minimal-mistakes/issues/2327)
- Fix `seo_description` in `_includes/seo.html`. [#2326](https://github.com/mmistakes/minimal-mistakes/pull/2326)
- Fix typo in `_config.yml`. [#2319](https://github.com/mmistakes/minimal-mistakes/pull/2319)
## [4.17.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.17.2)
### Enhancements
- Add collection step to documentation about creating a portfolio page. [#2294](https://github.com/mmistakes/minimal-mistakes/pull/2294)
- Replace sticky footer JavaScript with flexbox styles. [#2289](https://github.com/mmistakes/minimal-mistakes/pull/2289)
### Bug Fixes
- Fix sticky footer when using MozBar extension. [#2281](https://github.com/mmistakes/minimal-mistakes/issues/2281)
## [4.17.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.17.1)
### Enhancements
- Update Chinese (Simplified) localized UI text strings. [#2286](https://github.com/mmistakes/minimal-mistakes/pull/2286)
- Update list of 3rd party JavaScript used and licenses. [#2276](https://github.com/mmistakes/minimal-mistakes/pull/2276)
### Bug Fixes
- Fix indention of nested GFM task lists. [#2283](https://github.com/mmistakes/minimal-mistakes/issues/2283)
## [4.17.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.17.0)
### Enhancements
- Show a permalink anchor when hovering over headings in main content area. [#2251](https://github.com/mmistakes/minimal-mistakes/pull/2251)
- Allow per-page override of `words_per_minute`. [#2250](https://github.com/mmistakes/minimal-mistakes/pull/2250)
- Update [onchange](https://www.npmjs.com/package/onchange) development dependency in `package.json`. [#2241](https://github.com/mmistakes/minimal-mistakes/issues/2241)
- Add Catalan localized UI text strings. [#2237](https://github.com/mmistakes/minimal-mistakes/pull/2237)
### Bug Fixes
- Remove extraneous space from Internet Explorer conditional statement. [#2273](https://github.com/mmistakes/minimal-mistakes/pull/2273)
- Fix typo in `_config.yml`. [#2243](https://github.com/mmistakes/minimal-mistakes/pull/2243)
- Replace `http` URLs with `https` where applicable in `_config.yml`. [#2244](https://github.com/mmistakes/minimal-mistakes/pull/2244)
## [4.16.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.6)
### Enhancements
- Relax Jekyll dependency to allow for version 4.0.
- Add missing Spanish localized UI text strings. [#2229](https://github.com/mmistakes/minimal-mistakes/pull/2229)
- Allow Markdown in author bio. [#2215](https://github.com/mmistakes/minimal-mistakes/pull/2215)
### Bug Fixes
- Fix `site.url` in Organization/Person JSON-LD schema. [#1906](https://github.com/mmistakes/minimal-mistakes/issues/1906)
- Remove full stop in some `comment_form_info` UI text strings. [#2220](https://github.com/mmistakes/minimal-mistakes/pull/2220)
- Fix default `site.author` in seo.html [#2230](https://github.com/mmistakes/minimal-mistakes/pull/2230)
- Fix overlapping links (linked to and post's permalink) in post link type. [#2222](https://github.com/mmistakes/minimal-mistakes/issues/2222)
## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)
### Enhancements
- Add optional site subtitle to masthead. [#2173](https://github.com/mmistakes/minimal-mistakes/issues/2173)
- Add missing Punjabi and Hindi localized UI text strings. [#2212](https://github.com/mmistakes/minimal-mistakes/pull/2212)
- Add missing Korean localized UI text strings. [#2209](https://github.com/mmistakes/minimal-mistakes/pull/2209)
- Use [Font Awesome Kits](https://blog.fontawesome.com/introducing-font-awesome-kits-7134d1d59959) to use the latest version of icons. [#2184](https://github.com/mmistakes/minimal-mistakes/issues/2184)
- Remove unnecessary console.log in `lunr-en.js` and `lunr-gr.js` JavaScript. [#2193](https://github.com/mmistakes/minimal-mistakes/issues/2193)
- Remove unnecessary `type="text/javascript"` from Google Analytics JavaScript. [#2190](https://github.com/mmistakes/minimal-mistakes/pull/2190)
- Update links and fix typos in documentation. [#2186](https://github.com/mmistakes/minimal-mistakes/pull/2186)
- Add skip links. [#2182](https://github.com/mmistakes/minimal-mistakes/issues/2182)
### Bug Fixes
- Fix aria issues with Lunr search form. [#2211](https://github.com/mmistakes/minimal-mistakes/pull/2211)
- Fix missing fallback title for table of contents.
## [4.16.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.4)
### Enhancements
- Update Brazilian Portuguese localized UI text strings. [#2162](https://github.com/mmistakes/minimal-mistakes/pull/2162)
- Update Font Awesome to v5.8.2. [#2150](https://github.com/mmistakes/minimal-mistakes/pull/2150)
- Add missing Spanish localized UI text strings. [#2149](https://github.com/mmistakes/minimal-mistakes/pull/2149)
### Bug Fixes
- Fix arithmetic in `_form.scss` partial. [#2169](https://github.com/mmistakes/minimal-mistakes/pull/2169)
- Fix pound symbol not displaying properly for post categories and tags. [#2156](https://github.com/mmistakes/minimal-mistakes/issues/2156)
- Fix permalink stacking order and click-able area in archives.
## [4.16.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.3)
### Enhancements
- Update jQuery to v3.4.1. [#2137](https://github.com/mmistakes/minimal-mistakes/issues/2137)
- Update Gumshoe to v5.1.1. [#2140](https://github.com/mmistakes/minimal-mistakes/issues/2140)
### Bug Fixes
- Fix JavaScript error when resizing pages with table of contents. [#2140](https://github.com/mmistakes/minimal-mistakes/issues/2140)
## [4.16.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.2)
### Bug Fixes
- Revert jQuery back to version v3.3.1, v.3.4.0 causes issues with other plugins that haven't been updated. [#2137](https://github.com/mmistakes/minimal-mistakes/issues/2137)
## [4.16.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.1)
### Enhancements
- Update [`compress` layout](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#compress-layout) to v3.1.0. [#2128](https://github.com/mmistakes/minimal-mistakes/pull/2128)
- Update jQuery to v3.4.0. [#2129](https://github.com/mmistakes/minimal-mistakes/pull/2129)
### Bug Fixes
- Fix Gumshoe related JavaScript error on pages without a table of contents. [#2124](https://github.com/mmistakes/minimal-mistakes/pull/2124)
## [4.16.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.0)
### Enhancements
- Improve search `input` semantics for Lunr and Google search providers. [#2123](https://github.com/mmistakes/minimal-mistakes/pull/2123)
- Allow adding JavaScript files after those bundled in the theme. [#2110](https://github.com/mmistakes/minimal-mistakes/issues/2110) [#2116](https://github.com/mmistakes/minimal-mistakes/pull/2116)
- Add `$max-width` Sass variable for adjusting page content's maximum width. [#2093](https://github.com/mmistakes/minimal-mistakes/pull/2093)
- Add Thai localized UI text strings. [#2111](https://github.com/mmistakes/minimal-mistakes/pull/2111)
- Update Font Awesome to [v5.8.1](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.8.1). [#2102](https://github.com/mmistakes/minimal-mistakes/pull/2102)
- Add missing Vietnamese localized UI text strings. [#2097](https://github.com/mmistakes/minimal-mistakes/pull/2097)
- Replace jQuery Smooth Scroll with Smooth Scroll + Gumshoe. [#2082](https://github.com/mmistakes/minimal-mistakes/pull/2082)
- Add styling for [GFM task lists](https://help.github.com/en/articles/about-task-lists#creating-task-lists). [#2092](https://github.com/mmistakes/minimal-mistakes/issues/2092)
- Update Google Universal Analytics to load async. [#2079](https://github.com/mmistakes/minimal-mistakes/pull/2079)
- Remove Google+ social sharing button, comment provider, and author link configs from theme.
- Add missing Chinese text strings. [#2072](https://github.com/mmistakes/minimal-mistakes/pull/2072)
### Bug Fixes
- Fix table of contents active link styling.
- Add missing Hindi localized UI text strings. [#2105](https://github.com/mmistakes/minimal-mistakes/pull/2105) [#2106](https://github.com/mmistakes/minimal-mistakes/pull/2106)
- Fix Brazilian Portuguese text strings. [#2098](https://github.com/mmistakes/minimal-mistakes/pull/2098)
- Fix typo in French `results_found` text string. [#2096](https://github.com/mmistakes/minimal-mistakes/pull/2096)
- Fix figures inside of list elements. [#2094](https://github.com/mmistakes/minimal-mistakes/pull/2094)
- Remove Font Awesome `data-search-pseudo-elements` attribute as it degrades smooth scroll performance. [#2075](https://github.com/mmistakes/minimal-mistakes/issues/2075#issuecomment-472437014)
- Fix footnote links incompatibility with smooth scroll plugin. [#2075](https://github.com/mmistakes/minimal-mistakes/issues/2075)
- Loosen Bundler dependency in ruby gem.
## [4.15.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.15.2)
### Enhancements
- Close search overlay with <kbd>Esc</kbd>. [#2055](https://github.com/mmistakes/minimal-mistakes/pull/2055)
- Update Swedish localized UI text strings. [#2056](https://github.com/mmistakes/minimal-mistakes/pull/2056)
- Update Font Awesome to 5.7.1 and add `data-search-pseudo-elements` attribute. [#2053](https://github.com/mmistakes/minimal-mistakes/pull/2053)
- Add Malayalam localized UI text strings. [#2037](https://github.com/mmistakes/minimal-mistakes/pull/2037)
### Bug Fixes
- Fix table of contents errors with non-English characters in the headings. [#2042](https://github.com/mmistakes/minimal-mistakes/pull/2042)
- Fix `site.logo` false positives. [#2026](https://github.com/mmistakes/minimal-mistakes/pull/2026#issuecomment-455770730)
- Add empty `alt` attribute to `site.logo` image. [#2035](https://github.com/mmistakes/minimal-mistakes/pull/2035)
## [4.15.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.15.1)
### Bug Fixes
- Fix empty `<img>` when `site_logo` is not assigned. [#2026](https://github.com/mmistakes/minimal-mistakes/pull/2026#issuecomment-454809876)
## [4.15.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.15.0)
### Enhancements
- Add logo and title customization to the masthead. [#2026](https://github.com/mmistakes/minimal-mistakes/pull/2026)
- Add support to customize `issue-term` for utterances comment provider. [#2022](https://github.com/mmistakes/minimal-mistakes/pull/2022)
- Allow custom canonical url on a page-by-page basis. [#2021](https://github.com/mmistakes/minimal-mistakes/pull/2021)
- Update table of contents navigation based on scroll position to indicate which link is currently active in the viewport. [#2020](https://github.com/mmistakes/minimal-mistakes/pull/2020)
- Clicking table of contents links changes URL has fragment. [#2019](https://github.com/mmistakes/minimal-mistakes/pull/2019) [#2023](https://github.com/mmistakes/minimal-mistakes/pull/2023)
## [4.14.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.14.2)
### Enhancements
- Improve accessibility by adding label text to search button toggle. [#2014](https://github.com/mmistakes/minimal-mistakes/pull/2014)
- Update Lunr to 2.3.5. [#2010](https://github.com/mmistakes/minimal-mistakes/pull/2010)
- Shorten Internet Explorer conditional statement in `_includes/head.html`. [#2006](https://github.com/mmistakes/minimal-mistakes/pull/2006)
- Add Persian localized UI text strings. [#2004](https://github.com/mmistakes/minimal-mistakes/pull/2004)
- Remove unused JavaScript variables from Staticman comment script. [#1996](https://github.com/mmistakes/minimal-mistakes/pull/1996)
- Update Font Awesome to 5.6.0. [#1995](https://github.com/mmistakes/minimal-mistakes/pull/1995)
- Change remaining schema.org markup to `https`. [#1978](https://github.com/mmistakes/minimal-mistakes/pull/1978)
- Update NPM dependencies.
### Bug Fixes
- Fix wide tables that overflow parent container. [#2008](https://github.com/mmistakes/minimal-mistakes/issues/2008)
- Fix Spanish `comments_label` and `comments_title` UI text strings. [#1997](https://github.com/mmistakes/minimal-mistakes/pull/1997)
- Allow sidebar navigation with custom sidebar content. [#1986](https://github.com/mmistakes/minimal-mistakes/issues/1986)
- Fix Google Custom Search JavaScript error when not using Instant Search. [#1983](https://github.com/mmistakes/minimal-mistakes/pull/1983)
## [4.14.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.14.1)
### Bug Fixes
- Fix closed navicon on hover.
## [4.14.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.14.0)
### Enhancements
- Change schema.org markup to `https`. [#1969](https://github.com/mmistakes/minimal-mistakes/pull/1969)
- Add Google Drive as video provider. [#1967](https://github.com/mmistakes/minimal-mistakes/pull/1967)
- Match `:focus` color to skin.
- Add support for [utterances](https://utteranc.es/) comments. [#1909](https://github.com/mmistakes/minimal-mistakes/issues/1909)
- Use privacy aware embed options for YouTube and Vimeo in [responsive video helper](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#responsive-video-embed). [#1964](https://github.com/mmistakes/minimal-mistakes/pull/1964)
- Add `rel="nofollow noopener noreferrer"` to author profile links. [#1924](https://github.com/mmistakes/minimal-mistakes/pull/1924)
- Improve color contrast of primary buttons and links.
- Add Punjabi localized UI text strings. [#1962](https://github.com/mmistakes/minimal-mistakes/pull/1962)
- Add Hindi localized UI text strings. [#1888](https://github.com/mmistakes/minimal-mistakes/pull/1888)
- Update Lunr to `2.3.3`. [#1885](https://github.com/mmistakes/minimal-mistakes/pull/1885)
- Cache "static" includes to improve build performance. **Note:** The theme uses the [jekyll-include-cache](https://github.com/benbalter/jekyll-include-cache) plugin which will need to be installed in your `Gemfile` and added to the `plugins` array of `_config.yml`. Otherwise you'll throw `Unknown tag 'include_cached'` errors at build. [#1874](https://github.com/mmistakes/minimal-mistakes/pull/1874)
- Make entire feature and archive items "clickable". [#1864](https://github.com/mmistakes/minimal-mistakes/pull/1864)
- Allow custom Staticman endpoints. [#1842](https://github.com/mmistakes/minimal-mistakes/issues/1842)
- Remove `type="text/css"` from Algolia script includes. [#1836](https://github.com/mmistakes/minimal-mistakes/pull/1836)
- Remove unneeded `HandheldFriendly` and `MobileOptimized` meta tags. [#1837](https://github.com/mmistakes/minimal-mistakes/pull/1837)
- Update Font Awesome to version `5.5.0` and add `integrity` hash. [#1922](https://github.com/mmistakes/minimal-mistakes/pull/1922)
- Always load Google 404 Linkhelp script over HTTPS. [#1829](https://github.com/mmistakes/minimal-mistakes/pull/1829)
- Remove deprecated `base_path` include helper.
### Bug Fixes
- Prevent current post from showing in the related posts section. [#1976](https://github.com/mmistakes/minimal-mistakes/pull/1976)
- Fix dark skins syntax highlighting colors. [#1973](https://github.com/mmistakes/minimal-mistakes/issues/1973)
- Remove unnecessary closing bracket in analytics documentation. [#1915](https://github.com/mmistakes/minimal-mistakes/pull/1915)
- Fix breadcrumb navigation alignment. [#1917](https://github.com/mmistakes/minimal-mistakes/issues/1917)
- Fix Algolia search link positioning. [#1904](https://github.com/mmistakes/minimal-mistakes/pull/1904)
- Fix Lunr search index merging words. [#1883](https://github.com/mmistakes/minimal-mistakes/issues/1883)
- Properly apply `relative_url` filter to internal links in header overlay `actions` array.
- Revert cached includes (`include_cached`) for comment and analytics providers. [#1905](https://github.com/mmistakes/minimal-mistakes/issues/1905)
## [4.13.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.13.0)
### Enhancements
- Add Romanian localized UI text strings. [#1814](https://github.com/mmistakes/minimal-mistakes/pull/1814)
- Improve author link flexibility. [#1581](https://github.com/mmistakes/minimal-mistakes/issues/1581)
- Improve footer link flexibility.
- Deprecate `cta_label` and `cta_url` in header overlay in favor of new `actions` array that allows for multiple "call to action" button links. [#1461](https://github.com/mmistakes/minimal-mistakes/issues/1461)
- Add support to [gallery helper](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery) for defining column layout (`half`, `third`, or single `''`). [#1821](https://github.com/mmistakes/minimal-mistakes/issues/1821)
### Bug Fixes
- Fix sidebar navigation list toggle. [#1819](https://github.com/mmistakes/minimal-mistakes/issues/1819)
- Fix hover animation for links with `:visited` state. [#1820](https://github.com/mmistakes/minimal-mistakes/issues/1820)
## [4.12.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.12.2)
### Enhancements
- Add missing Italian localized UI text strings. [#1793](https://github.com/mmistakes/minimal-mistakes/pull/1793)
- Update [jekyll-toc](https://github.com/allejo/jekyll-toc) to `v1.0.5`.
- Support heading levels 1-6 in table of contents with proper indentation styling. [#1782](https://github.com/mmistakes/minimal-mistakes/issues/1782)
- Use relative links for masthead navigation menu items when possible. [#1784](https://github.com/mmistakes/minimal-mistakes/pull/1784)
- Add `.emoji` class to author sidebar to normalize image sizes. [#1780](https://github.com/mmistakes/minimal-mistakes/pull/1780)
- Update Staticman commit message to include comment author's name.
- Improve side navigation spacing in relation to masthead.
- Style archive links with appropriate link color.
- Adjust feature row spacing and font-sizes.
- Use sentence case and increase font-sizes for improved readability in table of contents.
- Add `{{ content }}` to `home` layout. [#1775](https://github.com/mmistakes/minimal-mistakes/pull/1775)
## [4.12.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.12.1)
### Enhancements
- Add missing French localized UI text strings. [#1769](https://github.com/mmistakes/minimal-mistakes/pull/1769) [#1741](https://github.com/mmistakes/minimal-mistakes/pull/1741)
- Update Font Awesome to version [`5.2.0`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md). [#1754](https://github.com/mmistakes/minimal-mistakes/pull/1754)
- Add documentation note to update root `Gemfile` when forking theme.
### Bug Fixes
- Remove slash at the beginning of `path` in staticman.yml example. [#1772](https://github.com/mmistakes/minimal-mistakes/pull/1772)
- Fix `read_time` logic in header image overlay. [#1756](https://github.com/mmistakes/minimal-mistakes/pull/1756)
## [4.12.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.12.0)
### Enhancements
- Add Hungarian localized UI text strings. [#1682](https://github.com/mmistakes/minimal-mistakes/pull/1682)
- DRY `tags_max` calculation in tags.html layout. [#1696](https://github.com/mmistakes/minimal-mistakes/pull/1696)
- DRY `categories_max` calculation in categories.html layout.
- 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.
- Add support for captioning images in feature row helper via `image_caption` YAML Front Matter. [#1440](https://github.com/mmistakes/minimal-mistakes/issues/1440)
- Add [Google Custom Search Engine](https://cse.google.com/cse) support. [#1652](https://github.com/mmistakes/minimal-mistakes/issues/1652)
- Update Font Awesome to version. [`5.1.13`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md)
- Add "Pets" sample archive page to documentation site. [#1664](https://github.com/mmistakes/minimal-mistakes/pull/1664)
- Add GitLab social icon brand color. [#1653](https://github.com/mmistakes/minimal-mistakes/issues/1653)
- Prevent line breaks between FontAwesome icon and text in footer social links. [#1659](https://github.com/mmistakes/minimal-mistakes/issues/1659)
### Bug Fixes
- Set default `title_separator`. [#1701](https://github.com/mmistakes/minimal-mistakes/pull/1701)
- Fix `naver_site_verification` typo in /\_includes/seo.html. [#1687](https://github.com/mmistakes/minimal-mistakes/pull/1687)
- Fix table of contents missing borders. [#1675](https://github.com/mmistakes/minimal-mistakes/issues/1675)
- Fix link to "Recipes" sample archive on documentation site. [#1664](https://github.com/mmistakes/minimal-mistakes/pull/1664)
- Update example Reddit social share interpolation syntax in documentation. [#1656](https://github.com/mmistakes/minimal-mistakes/issues/1656)
- Fix "Back to Top" links on pages that use [header overlays](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#header-overlay).
## [4.11.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.11.2)
### Enhancements
- Update Font Awesome to version `5.0.11`. [#1620](https://github.com/mmistakes/minimal-mistakes/pull/1620)
- Add Slovak localized UI text strings. [#1613](https://github.com/mmistakes/minimal-mistakes/pull/1613)
- Add option to anonymize IP addresses of hits sent to Google Analytics. [#1636](https://github.com/mmistakes/minimal-mistakes/pull/1636)
### Bug Fixes
- Use correct text string for "Back to Top" link. [#1595](https://github.com/mmistakes/minimal-mistakes/issues/1595)
- Add conditionals for showing `reCaptcha.siteKey` and `reCaptcha.secret` in Staticman comments form.
## [4.11.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.11.1)
### Enhancements
- Add default `theme` and `remote_theme` values to `_config.yml`.
- Add new layouts (`posts`, `categories`, `tags`, `collection`, `category`, and `tag`) for easier archive page creation.
### Bug Fixes
- Replace `absolute_url` filter with `relative_url` where it makes sense (asset/navigation related paths). [#1588](https://github.com/mmistakes/minimal-mistakes/issues/1588)
- Fix search excerpts that run together because of implied spaces.
## [4.10.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.10.1)
### Enhancements
- Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491)
- Add link to jekyll-algolia's `files_to_exclude` documentation.
- 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)
- Activate Algolia search for documentation site. [#1570](https://github.com/mmistakes/minimal-mistakes/issues/1570)
- Add missing German translations. [#1577](https://github.com/mmistakes/minimal-mistakes/pull/1577)
- Add support for Google Analytics with global site tag (gtag.js) [#1563](https://github.com/mmistakes/minimal-mistakes/pull/1563)
### Bug Fixes
- Focus Algolia search input after clicking on search toggle.
## [4.10.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.10.0)
### Enhancements
- 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)
## [4.9.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.9.1)
### Enhancements
- Simplify year archive Liquid.
- Add documentation on how to downgrade theme.
- Improve greedy navigation's layout when JavaScript is disabled.
- Improve SEO include by grouping similar tags, reducing white-space, and adding `article:modified_time`. [#1456](https://github.com/mmistakes/minimal-mistakes/pull/1456)
- Minify `assets/js/lunr/lunr.js`.
- Improve calculation of Greedy navigation's `availableSpace`.
- 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)
- Indicate that archive titles are links with an underline.
- Remove `base_path` include from `/test` pages.
- Reduce font-size of page meta in list/grid items.
- Improve feature row styling when used with `archive` layout. [#1484](https://github.com/mmistakes/minimal-mistakes/issues/1484)
- Improve German translations. [#1511](https://github.com/mmistakes/minimal-mistakes/pull/1511)
- Update Font Awesome to `5.0.6`. [#1513](https://github.com/mmistakes/minimal-mistakes/pull/1513)
- Add `wide` variant to single layout. [#1516](https://github.com/mmistakes/minimal-mistakes/pull/1516)
### Bug Fixes
- Allow `author` to accept an object or string. [#289](https://github.com/mmistakes/minimal-mistakes/issues/289)
- Fix syntax highlighting line number styling inconsistency. [#1467](https://github.com/mmistakes/minimal-mistakes/issues/1467)
- Fix author sidebar icon colors for dark skins. [#1482](https://github.com/mmistakes/minimal-mistakes/issues/1482)
- Remove misleading underline hover state on feature row items.
- Properly escape quotes in `site.social.name` and `site.name`. [#1485](https://github.com/mmistakes/minimal-mistakes/pull/1485)
- Fix typo in upgrading documentation. [#1487](https://github.com/mmistakes/minimal-mistakes/pull/1487)
- Fix `border-bottom` for Gist line numbers.
- Replace `|` with HTML entity when used as title separator. [#760](https://github.com/mmistakes/minimal-mistakes/issues/760)
## [4.9.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.9.0)
### Enhancements
- Add `show_overlay_excerpt` for disabling overlay image excerpt text. [#1436](https://github.com/mmistakes/minimal-mistakes/pull/1436)
- Update remote theme installation instructions in Quick Start Guide. [#1439](https://github.com/mmistakes/minimal-mistakes/pull/1439)
- Reduce visual weight of code blocks.
- Add Lunr.js Greek stemmer. [#1445](https://github.com/mmistakes/minimal-mistakes/pull/1445)
- 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)
- 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.
- 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)
- Improve syntax highlighting styles. [#1450](https://github.com/mmistakes/minimal-mistakes/pull/1450)
### Bug Fixes
- 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)
- Round top-right corner of code block icon.
- Remove Lunr.js trimmer and bring back colons. [#1445](https://github.com/mmistakes/minimal-mistakes/pull/1445)
- Fix sticky `.sidebar` that overlaps main content when resizing viewport. [#1447](https://github.com/mmistakes/minimal-mistakes/issues/1447)
## [4.8.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.8.1)
### Enhancements
- Add linkback functionality to author avatar and name in sidebar via `author.home`. [#1386](https://github.com/mmistakes/minimal-mistakes/pull/1386)
- Add Japanese localized UI text strings. [#1411](https://github.com/mmistakes/minimal-mistakes/pull/1411)
- Update Lunr.js to 2.1.5 [#1419](https://github.com/mmistakes/minimal-mistakes/pull/1419)
### Bug Fixes
- Fixed broken link to Staticman's page [#1422](https://github.com/mmistakes/minimal-mistakes/pull/1422)
- 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)
## [4.8.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.8.0)
### Enhancements
- Open social share links in a new window. [#1357](https://github.com/mmistakes/minimal-mistakes/pull/1357)
- 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)
- Disable analytics in `development` environment. [#1362](https://github.com/mmistakes/minimal-mistakes/pull/1362)
- Disable comments in `development` environment. [#1363](https://github.com/mmistakes/minimal-mistakes/pull/1363)
- 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)
- Add optional `description` key to masthead links for clarifying their purpose with the `title` attribute. [#1380](https://github.com/mmistakes/minimal-mistakes/pull/1380)
- Incorporate site search into masthead. [#1383](https://github.com/mmistakes/minimal-mistakes/pull/1383)
- Update gem dependencies. [#1388](https://github.com/mmistakes/minimal-mistakes/pull/1388)
### Bug Fixes
- Fix `post.content` typo in `assets/js/lunr-en.js`. [#1354](https://github.com/mmistakes/minimal-mistakes/pull/1354)
- Fix "lunr-en.js:1 Uncaught SyntaxError: Unexpected token <" in `assets/js/lunr-en.js`. [#1356](https://github.com/mmistakes/minimal-mistakes/pull/1356)
- Rename Naver verification `naver_site_verification` to be consistent with other site variables.
- Fix button class in "Post with Table Of Contents" demo content. [#1368](https://github.com/mmistakes/minimal-mistakes/pull/1368)
- Fix capitalization of WordPress in documentation. [#1381](https://github.com/mmistakes/minimal-mistakes/pull/1381)
- 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)
## [4.7.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.7.1)
### Enhancements
- Add search layout powered by [Lunr](https://lunrjs.com/). [#1353](https://github.com/mmistakes/minimal-mistakes/pull/1353)
- Use [jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme) for demo site. [#1339](https://github.com/mmistakes/minimal-mistakes/issues/1339)
- Add note about WordPress to Staticman comment migration tool in documentation. [#1346](https://github.com/mmistakes/minimal-mistakes/issues/1346)
### Bug Fixes
- 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)
- Change `http` author profile links to `https` when supported. [#1349](https://github.com/mmistakes/minimal-mistakes/pull/1349)
- Fix broken SCSS partial links in layouts documentation. [#1351](https://github.com/mmistakes/minimal-mistakes/issues/1351)
## [4.7.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.7.0)
### Enhancements
- Add `alt` description to avatar image. [#1226](https://github.com/mmistakes/minimal-mistakes/pull/1226)
- 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)
- Add note about Staticman GitHub compatibility. [#1273](https://github.com/mmistakes/minimal-mistakes/issues/1273)
- Add missing Brazilian Portuguese translations to `ui-text.yml`. [#1278](https://github.com/mmistakes/minimal-mistakes/pull/1278)
- Update font stack documentation. [#1292](https://github.com/mmistakes/minimal-mistakes/pull/1292)
- Improve accessibility of navigation menu button. [#1099](https://github.com/mmistakes/minimal-mistakes/issues/1099)
- Add Naver Webmaster Tools verification. [#1286](https://github.com/mmistakes/minimal-mistakes/pull/1286)
- Add support for Staticman v2 endpoint and reCAPTCHA.
- Add Polish localized UI text strings. [#1304](https://github.com/mmistakes/minimal-mistakes/pull/1304)
- 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)
- Refactor seo.html include to DRY-up page image handling.
- 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)
- Fix the spelling of some product names in the author profile. [#1328](https://github.com/mmistakes/minimal-mistakes/pull/1328)
- Add `aqua`, `neon`, and `plum` skins. [#1336](https://github.com/mmistakes/minimal-mistakes/pull/1336)
- Update **jekyll-toc** with heading classes fix. [#1337](https://github.com/mmistakes/minimal-mistakes/pull/1337)
- Remove `+` from Google+ author link to allow non-vanity URLs. [#1319](https://github.com/mmistakes/minimal-mistakes/pull/1319)
### Bug Fixes
- Fix system font rendering in Chrome on macOS/OS X. [#1290](https://github.com/mmistakes/minimal-mistakes/pull/1290)
- Fix extra padding in syntax highlighted code blocks due to Rouge 2 adding `<div class="highlight"></div>` to markup.
## [4.6.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.6.0)
### Enhancements
- Test strict Front Matter in `/test` site. [#1236](https://github.com/mmistakes/minimal-mistakes/pull/1236)
- Rename `gems` key to `plugins`. [#1239](https://github.com/mmistakes/minimal-mistakes/pull/1239)
- Add [YIQ Color Contrast](https://github.com/easy-designs/yiq-color-contrast) mixin for determining lightness of a color.
- DRY up button CSS using Sass lists and YIQ Color Contrast mixin.
- 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>`).
- Add `air`, `contrast`, `dark`, `dirt`, `mint`, and `sunrise` skin color options. [#1208](https://github.com/mmistakes/minimal-mistakes/issues/1208)
- 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)
- 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)
## [4.5.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.2)
### Enhancements
- Add `.page__comments-form` to "non-printing" selectors in print styles. [#1195](https://github.com/mmistakes/minimal-mistakes/pull/1195)
- 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)
- Remove the http-equiv="cleartype" meta tag. [#1087](https://github.com/mmistakes/minimal-mistakes/pull/1087)
- Clarify documentation for `jekyll-archives` plugin and how to install. [#1206](https://github.com/mmistakes/minimal-mistakes/pull/1206)
- Clarify documentation around taxonomy page and index generation. [#1207](https://github.com/mmistakes/minimal-mistakes/pull/1207)
- Fix "Posts by tag" grammar in documentation. [#1209](https://github.com/mmistakes/minimal-mistakes/pull/1209)
- 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)
- Add note to Quick-Start Guide about GitHub Pages hosting alternatives that allow 3rd party gem themes and Jekyll plugins.
- Add note to configuration documentation about Cloudflare minification as an alternative to `layout: compress`. [#1217](https://github.com/mmistakes/minimal-mistakes/pull/1217)
- 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)
- Truncate archive item titles' that overflow with an ellipsis. [#1213](https://github.com/mmistakes/minimal-mistakes/issues/1213)
### Bug Fixes
- Fix license URL in README file. [#1189](https://github.com/mmistakes/minimal-mistakes/pull/1189)
- Reduce amount of blank pages when printing in Chrome. [#1196](https://github.com/mmistakes/minimal-mistakes/issues/1196)
- 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)
- 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)
- Fix Liquid syntax error: "Expected id but found open_square in `"{{ page.[include.id] }}"`" in `gallery` and `feature_row` includes.
- Fix Liquid syntax error: "Expected end_of_string but found pipe in `"name in __names | sort"`" in `group-by-array` include.
## [4.5.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.1)
### Enhancements
- 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)
- Remove blank YAML Front Matter from JavaScript banner. [#1158](https://github.com/mmistakes/minimal-mistakes/issues/1158)
- 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)
- Increase font-size of code blocks.
- Reduce indent of nested "table of contents" links.
- Extend [archive grid view](https://mmistakes.github.io/minimal-mistakes/docs/layouts/) to the right to better fill the page.
- URL encode title and page URL in social share links. [#1177](https://github.com/mmistakes/minimal-mistakes/pull/1177)
- Replace old Disqus script with new Universal Embed Code. [#1179](https://github.com/mmistakes/minimal-mistakes/pull/1179)
### Bug Fixes
- Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
- Fix "follow" links `z-index` order to avoid overlapping issues. [#1167](https://github.com/mmistakes/minimal-mistakes/issues/1167)
### Maintenance
- Fix typo `words_per_minute` typo in documentation. [#1164](https://github.com/mmistakes/minimal-mistakes/pull/1164)
- Remove outside and right borders in `table`s.
- Adjust width of `.sidebar` to match `.sidebar__right`.
- Add sample documents to ["portfolio" collection](https://mmistakes.github.io/minimal-mistakes/portfolio/) for testing grid view.
- Fix typo in stylesheets documentation. [#1170](https://github.com/mmistakes/minimal-mistakes/pull/1170)
- 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)
## [4.5.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.5.0)
### Enhancements
- Add scrollbar to sidebars with overflowing content that extends outside the viewport's height. [#706](https://github.com/mmistakes/minimal-mistakes/issues/706)
- Add missing Spanish UI text strings. [#1118](https://github.com/mmistakes/minimal-mistakes/pull/1118)
- Update Susy to version 3 and rewrite grid CSS to be more readable.
- Refactor intro animations into a separate Sass variable `$intro-transition` to allow for customizing. [#1147](https://github.com/mmistakes/minimal-mistakes/pull/1147)
- 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)
- Add support for customizing header image alternative text through YAML Front Matter. [#1138](https://github.com/mmistakes/minimal-mistakes/pull/1138)
### Bug Fixes
- 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)
- 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)
### Maintenance
- Replace reference to "Basically Basic theme" with **Minimal Mistakes**. [#1149](https://github.com/mmistakes/minimal-mistakes/pull/1149)
- Add documentation for disabling CSS3 animations. [#1150](https://github.com/mmistakes/minimal-mistakes/pull/1150)
- Update quickstart, installation, and overriding defaults documentation. [#1151](https://github.com/mmistakes/minimal-mistakes/pull/1151)
## [4.4.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.2)
### Enhancements
- 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)
- Add Bitbucket social icon color. [#1009](https://github.com/mmistakes/minimal-mistakes/pull/1009)
- Add GitLab to author sidebar. [#1050](https://github.com/mmistakes/minimal-mistakes/pull/1050)
- 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)
### Bug Fixes
- Toggle close button on `mouseleave`. [#975](https://github.com/mmistakes/minimal-mistakes/issues/975)
- Remove extraneous `</a>` and `</li>` tags from `paginator.html` include. [#1038](https://github.com/mmistakes/minimal-mistakes/pull/1038)
- Fix Google+ comments provider includes. [#1092](https://github.com/mmistakes/minimal-mistakes/issues/1092)
- 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)
### Maintenance
- Add mention of Greek localized UI text strings to theme documentation. [#972](https://github.com/mmistakes/minimal-mistakes/pull/972)
- Update Greek localized UI text strings. [#1054](https://github.com/mmistakes/minimal-mistakes/pull/1054)
- Add documentation for adding teaser images in grid view using `header.teaser`.
## [4.4.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.1)
### Enhancements
- Add Greek localized UI text strings. [#958](https://github.com/mmistakes/minimal-mistakes/pull/958)
### Bug Fixes
- Fix `video` helper to load Vimeo videos over https. [#945](https://github.com/mmistakes/minimal-mistakes/pull/945)
- Fix close menu button that was removed when updating Greedy navigation script. [#969](https://github.com/mmistakes/minimal-mistakes/issues/969)
## [4.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.4.0)
### Enhancements
- Move SCSS partials to `/_sass/minimal-mistakes` for easier CSS customization.
- Replace `modified` with `last_modified_at` to leverage various Jekyll plugins that utilize this variable. [#930](https://github.com/mmistakes/minimal-mistakes/pull/930)
- Add Lithuanian localized UI text. [#924](https://github.com/mmistakes/minimal-mistakes/pull/924)
- 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)
### Maintenance
- Remove extra word in comment. [#911](https://github.com/mmistakes/minimal-mistakes/pull/911)
- Fix typo in Utility Class docs. [#915](https://github.com/mmistakes/minimal-mistakes/pull/915)
## [4.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.1)
### Bug Fixes
- Fix `.masthead` and `.page__footer` overlapping full screen video elements. [#933](https://github.com/mmistakes/minimal-mistakes/issues/933)
- 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)
## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
### Enhancements
- 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:
```
---
layout:
---
```
Any local customizations you make to `/assets/js/main.min.js` should now replace the theme gem's version.
## [4.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.2)
### Enhancements
- 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)
- Adjust `box-shadow` in navigation and author sidebar. [#576](https://github.com/mmistakes/minimal-mistakes/pull/576)
- 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)
### Bug Fixes
- Fix Discourse embedded comments bug. [#823](https://github.com/mmistakes/minimal-mistakes/issues/823)
- Fix `seo_author` default value in `seo.html` and add `author` meta. [#858](https://github.com/mmistakes/minimal-mistakes/pull/858)
### Maintenance
- Add theme meta info to `_layouts/default.html` and `main.css`.
- Update README.
- Improve the pagination and taxonomy archive documentation. [#826](https://github.com/mmistakes/minimal-mistakes/pull/826)
- Add comments to `/docs/_config.yml` to clarify use of YAML references. [#847](https://github.com/mmistakes/minimal-mistakes/pull/847)
## [4.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.1)
### Enhancements
- 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/)
### Maintenance
- Add `https` protocol to Google Universal Analytics embed. [#772](https://github.com/mmistakes/minimal-mistakes/pull/772)
## [4.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.2.0)
### Enhancements
- Add `video` helper (for YouTube/Vimeo) and video headers to `single`, `archive`, and `splash` layouts. [#788](https://github.com/mmistakes/minimal-mistakes/pull/788)
- Add missing simplified Chinese localized UI text strings. [#747](https://github.com/mmistakes/minimal-mistakes/pull/747)
- Add Nepali (Nepalese) localized UI text strings. [#785](https://github.com/mmistakes/minimal-mistakes/pull/785)
- Remove borders from table elements found in Google Custom Search Engine widget. [#759](https://github.com/mmistakes/minimal-mistakes/issues/759)
### Bug Fixes
- 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)
### Maintenance
- Fix invalid Google Universal Analytics example in documentation. [#783](https://github.com/mmistakes/minimal-mistakes/pull/783)
- Bump `jekyll-sitemap` gem dependency to (1.0).
## [4.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.1)
### Enhancements
- Remove hardcoded `words_per_minute` "less than" and "minute read" values and make dynamic. [#703](https://github.com/mmistakes/minimal-mistakes/issues/703)
- 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)
- Add support for YouTube channel URLs in author profile. [#716](https://github.com/mmistakes/minimal-mistakes/issues/716)
### Bug Fixes
- Add Jekyll as `spec.add_runtime_dependency` in `.gemspec`.
## [4.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.0)
### Enhancements
- 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
### Bug Fixes
- Fix link to Discourse.org homepage in `noscript` section [#699](https://github.com/mmistakes/minimal-mistakes/pull/699)
- Fix padding issue with pagination buttons [#694](https://github.com/mmistakes/minimal-mistakes/issues/694)
## [4.0.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.10)
### Bug Fixes
- Add Staticman default `path`. [#683](https://github.com/mmistakes/minimal-mistakes/issues/683)
### Maintenance
- Slight correction/improvements to French UI text. [#685](https://github.com/mmistakes/minimal-mistakes/pull/685)
## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9)
### Bug Fixes
- Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668)
## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8)
### Bug Fixes
- Set default value for `words_per_minute`. [#657](https://github.com/mmistakes/minimal-mistakes/issues/657)
- Adjust sidebar navigation list CSS so it collapses at the correct width.
### Maintenance
- Add Google AdSense banner to `/docs/_layouts/default.html` for demo site.
## [4.0.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.7)
### Enhancements
- Add `!default` values to **\_sass/\_variables.scss**.
- Collapse sidebar navigation lists on smaller screens. [#607](https://github.com/mmistakes/minimal-mistakes/issues/607)
### Bug Fixes
- Rename `#comments` to something more unique to avoid clashes with Kramdown generated headline IDs. [#582](https://github.com/mmistakes/minimal-mistakes/issues/582)
### Maintenance
- Reorganize SCSS partials in **assets/css/main.scss**
## [4.0.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.6)
### Enhancements
- 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)
- Add structured data markup for `itemprop="person"` in author profile sidebar. [#647](https://github.com/mmistakes/minimal-mistakes/pull/647)
### Bug Fixes
- Fix improper YAML formatting of some locales. [#651](https://github.com/mmistakes/minimal-mistakes/pull/651)
### Maintenance
- Clarify "migrating to gem-theme" instructions in **Quick Start Guide**.
- Add `rake preview` task for testing `/test` during theme development.
## [4.0.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5)
### Enhancements
- Update gems: `jekyll-sitemap` (0.12), `jekyll-feed` (0.8).
- Improve next/previous pager links visibility by changing gray color to blue (`$link-color`).
### Bug Fixes
- Fix `.sidebar` flicker/jump when hovered. [#583](https://github.com/mmistakes/minimal-mistakes/issues/583)
### Maintenance
- Move contents of `gh-pages` branch to `master` inside of the `/docs` folder.
## [4.0.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4)
### Enhancements
- "Gemify" theme ~> `gem "minimal-mistakes-jekyll"`
- Replace `base_path` include with `relative_url` filter where possible.
- 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.**
- Add [home `layout`](https://github.com/mmistakes/minimal-mistakes/blob/master/_layouts/home.html)
- Added missing Turkish translations for UI text. [#621](https://github.com/mmistakes/minimal-mistakes/pull/621)
- Make author avatar optional in sidebar.
- Update **/\_includes/seo.html** for meta description. [#558](https://github.com/mmistakes/minimal-mistakes/pull/558)
### Bug Fixes
- Fix navigation bar animation "flicker" in Safari [#568](https://github.com/mmistakes/minimal-mistakes/issues/568)
- Fix `author.avatar` paths for externally hosted images.
### Maintenance
- Add documentation around `gem "minimal-mistakes-jekyll"` installation and use.
- 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/`.
- Add "[Overriding Theme Defaults](https://mmistakes.github.io/minimal-mistakes/docs/overriding-theme-defaults/)" page to documentation.
## [3.4.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.8)
### Enhancements
- Improve type readability for larger viewports by bumping up base `font-size`. [#533](https://github.com/mmistakes/minimal-mistakes/issues/533)
- Update Portuguese localized UI text. [#541](https://github.com/mmistakes/minimal-mistakes/pull/541)
- Add `page.title` and via parameter to Twitter share link. [#538](https://github.com/mmistakes/minimal-mistakes/pull/538)
### Bug Fixes
- Fix Last.fm author profile URL. [#540](https://github.com/mmistakes/minimal-mistakes/pull/540)
### Maintenance
- Move Brazilian Portuguese localized text under `pt-BR` key.
## [3.4.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.7)
### Enhancements
- Add `layout` based and user-defined class names to `<body>` element for added CSS hooks. [#526](https://github.com/mmistakes/minimal-mistakes/pull/526)
- Add simplified Chinese localized UI text. [#532](https://github.com/mmistakes/minimal-mistakes/pull/532)
### Bug Fixes
- Remove duplicate include of `base_path` in category-list.html [#522](https://github.com/mmistakes/minimal-mistakes/pull/522)
## [3.4.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.6)
### Enhancements
- Add Italian "comments" related localized UI text. [#514](https://github.com/mmistakes/minimal-mistakes/pull/514)
### Bug Fixes
- Disable `compress` HTML layout by default. To enable add `layout: compress` to `_layouts/default.html`.
## [3.4.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.5)
### Enhancements
- Improve line numbered code block styling when using `{% highlight linenos %}` tag. [#513](https://github.com/mmistakes/minimal-mistakes/issues/513)
- Add English fallback to "Follow" button label. [#496](https://github.com/mmistakes/minimal-mistakes/pull/496)
### Bug Fixes
- Fix Firefox alignment issues with code blocks generated with the `{% highlight %}` tag. [#512](https://github.com/mmistakes/minimal-mistakes/issues/512)
### Maintenance
- Clarified comment for `author.stackoverflow` value used in author sidebar links. [#487](https://github.com/mmistakes/minimal-mistakes/pull/487)
- Add list of localized text strings. [#488](https://github.com/mmistakes/minimal-mistakes/pull/488)
- Add `{% highlight %}` code block examples to demo site.
- Add documentation for using custom sidebar navigation menus. [#476](https://github.com/mmistakes/minimal-mistakes/issues/476)
## [3.4.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.4)
### Enhancements
- Add French "comments" related localized UI text. [#472](https://github.com/mmistakes/minimal-mistakes/pull/472)
### Bug Fixes
- Exclude `vendor` in Jekyll config file.
- Fix Liquid syntax error for offending parenthesis. [#479](https://github.com/mmistakes/minimal-mistakes/issues/479)
### Maintenance
- Update gems: `colorator` (1.1.0), `forwardable-extended` (2.6.0), `github-pages` (93), `jekyll` (= 3.2.1), `minima` (= 1.0.1).
## [3.4.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.3)
### Enhancements
- Make ["honeypot" `input`](https://github.com/mmistakes/minimal-mistakes/commit/06a8249a69a37dddda7e2a5bfbe32056c1a9a607) in Staticman comment form less obvious to spam bots
- Add padding to `.highlight` code blocks to better [align `overflow` scrollbar](https://github.com/mmistakes/minimal-mistakes/commit/e4abec0a6f7f8cff72505ca0754615df294fd5b3) to the bottom.
- Add additional image options for Twitter card social sharing meta tags. [#466](https://github.com/mmistakes/minimal-mistakes/pull/466)
- Add structured data markup for Staticman comments. [#458](https://github.com/mmistakes/minimal-mistakes/issues/458)
### Bug Fixes
- Format `og:locale` tag with `_` instead of `-`. [#462](https://github.com/mmistakes/minimal-mistakes/issues/462)
### Maintenance
- Add note to docs about using `url: http://localhost:4000` when working locally.
## [3.4.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.2)
### Enhancements
- Improve UX of static comment forms. [#448](https://github.com/mmistakes/minimal-mistakes/issues/448)
## [3.4.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.1)
### Enhancements
- Add `staticman.filename` configuration with UNIX timestamp for sorting data files. example ~> `comment-1470943149`.
### Bug Fixes
- Don't add `<a>` to author name if URL is blank.
## [3.4.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.0)
### Enhancements
- Support static-based commenting via [Staticman](https://staticman.net/) for sites hosted with GitHub Pages. [#424](https://github.com/mmistakes/minimal-mistakes/issues/424)
## [3.3.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.7)
### Bug Fixes
- Re-enabled Jekyll plugins in `_config.yml` in case they aren't autoloaded in `Gemfile`. [#417](https://github.com/mmistakes/minimal-mistakes/issues/417)
### Enhancements
- Fallback to `site.github.url` for use in `{{ base_path }}` when `site.url` is `nil`.
- 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)
### Maintenance
- Document `site.repository` and its role with [`github-metadata`](https://github.com/jekyll/github-metadata) gem.
- Add sample [archive page with content](https://mmistakes.github.io/minimal-mistakes/archive-layout-with-content/) for testing styles on demo site.
## [3.3.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.6)
### Bug Fixes
- Fix blank `site.teaser` bug. [#412](https://github.com/mmistakes/minimal-mistakes/issues/412)
## [3.3.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.5)
### Enhancements
- Add English default text `site.locale` strings. [#407](https://github.com/mmistakes/minimal-mistakes/issues/407)
- Add Portuguese localized UI text. [#411](https://github.com/mmistakes/minimal-mistakes/pull/411)
- Add Italian localized UI text. [#409](https://github.com/mmistakes/minimal-mistakes/pull/409)
### Maintenance
- Remove unused Google AdSense variables in `_config.yml`. [#404](https://github.com/mmistakes/minimal-mistakes/issues/404)
- Update `Gemfile` instructions for using `github-pages` vs. native `jekyll` gems.
- Disable `gems:` in `_config.yml` and enable plugins with Bundler instead.
- Add `repository` to `_config.yml` to suppress GitHub Pages error `Liquid Exception: No repo name found.`
## [3.3.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.4)
### Enhancements
- 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)
- Add Turkish localized UI text. [#403](https://github.com/mmistakes/minimal-mistakes/pull/403)
### Maintenance
- Update gems: `activesupport` (4.2.7), `ffi` (1.9.14), `github-pages` (88), `jekyll-redirect-from` (0.11.0), `jekyll-watch` (1.5.0).
## [3.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.3)
### Enhancements
- Make footer stick to the bottom of the page.
### Bug Fixes
- Fix `gallery` size bug [#402](https://github.com/mmistakes/minimal-mistakes/issues/402)
### Maintenance
- Set default `lang` to `en`.
## [3.3.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.2)
### Bug Fixes
- Fix JavaScript that triggers "sticky" sidebar to avoid layout issues on screen sizes < `1024px`. [#396](https://github.com/mmistakes/minimal-mistakes/issues/396)
## [3.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.1)
### Enhancements
- Enable image popup on < 500px wide screens. [#385](https://github.com/mmistakes/minimal-mistakes/issues/385)
- 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)
- Improve link posts in archive listings. [#276](https://github.com/mmistakes/minimal-mistakes/issues/276)
### Maintenance
- Update gems: `github-pages` (86), `ffi` 1.9.13, `jekyll-mentions` 1.1.3, and `rouge` 1.11.1
- Fix note about custom sidebar content appearing below author profile. [#388](https://github.com/mmistakes/minimal-mistakes/issues/388)
## [3.2.13](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.13)
### Enhancements
- Add English default UI text for Canada, Great Britain, and Australia. [#377](https://github.com/mmistakes/minimal-mistakes/issues/377)
- Switch default locale from `en-US` to `en`.
## [3.2.12](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.12)
### Enhancements
- Remove window width "magic number" from sticky sidebar check in `main.js` for improved flexibility. [#375](https://github.com/mmistakes/minimal-mistakes/pull/375)
### Bug Fixes
- 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)
## [3.2.11](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.11)
### Bug Fixes
- Fix disappearing author sidebar links [#372](https://github.com/mmistakes/minimal-mistakes/issues/372)
### Maintenance
- Update gems: `github-pages` (84), `jekyll-github-metadata` 2.0.2, and `kramdown` 1.11.1
- Update vendor JavaScript: jQuery 1.12.4, Stickyfill.js 1.1.4
- Update Font Awesome 4.6.3
## [3.2.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.10)
### Maintenance
- Add `CONTRIBUTING.md`
## [3.2.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.9)
### Enhancements
- 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)
### Bug Fixes
- Fix `Person` typo Schema.org type [#358](https://github.com/mmistakes/minimal-mistakes/pull/358)
### Maintenance
- Update `github-pages` gem and dependencies.
- Remove `minutes_read` to avoid awkward reading time wording [#356](https://github.com/mmistakes/minimal-mistakes/issues/356)
## [3.2.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.8)
### Bug Fixes
- Remove `cursor: pointer` that appears on white-space surrounding author side list items and links. [#354](https://github.com/mmistakes/minimal-mistakes/pull/354)
### Maintenance
- Add contributing information to `README.md`. [#357](https://github.com/mmistakes/minimal-mistakes/issues/357)
## [3.2.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.7)
### Enhancements
- Add French localized UI text. [#346](https://github.com/mmistakes/minimal-mistakes/pull/346)
### Bug Fixes
- Fix branch logic for Yandex and Alexa in `seo.html`. [#348](https://github.com/mmistakes/minimal-mistakes/pull/348)
## [3.2.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.6)
### Bug Fixes
- 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)
## [3.2.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.5)
### Bug Fixes
- Fix link color in hero overlay to be white.
- Remove underlines from archive item titles.
## [3.2.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.4)
### Enhancements
- 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)
- Add Spanish localized UI text. [#338](https://github.com/mmistakes/minimal-mistakes/pull/338)
### Bug Fixes
- Fix alignment of icons in author sidebar [#341](https://github.com/mmistakes/minimal-mistakes/issues/341)
### Maintenance
- Add background color to page footer to set it apart from main content. [#342](https://github.com/mmistakes/minimal-mistakes/issues/342)
- Add terms and privacy policy to theme's demo site. [#343](https://github.com/mmistakes/minimal-mistakes/issues/343)
- Update screenshots found in theme documentation.
## [3.2.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.3)
### Enhancements
- Add [Discourse](https://www.discourse.org/) as a commenting provider. [#335](https://github.com/mmistakes/minimal-mistakes/pull/335)
## [3.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.2)
### Enhancements
- 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)
## [3.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.1)
### Bug Fixes
- Remove need for "double tapping" masthead menu links on iOS devices. [#315](https://github.com/mmistakes/minimal-mistakes/issues/315)
### Maintenance
- Add `ISSUE_TEMPLATE.md` for improve issue submission process.
## [3.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.0)
### Bug Fixes
- 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)
## [3.1.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.8)
### Bug Fixes
- 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)
### Maintenance
- Remove duplicate `fa-twitter` and `fa-twitter-square` classes from `_utilities.scss`. [#302](https://github.com/mmistakes/minimal-mistakes/issues/302)
- 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)
## [3.1.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.7)
### Enhancements
- Add translation key for "Recent Posts" used in home page `index.html`. [#316](https://github.com/mmistakes/minimal-mistakes/pull/316)
### Maintenance
- Small fix to avoid underlying the whitespace between icons and related text when hovering. [#303](https://github.com/mmistakes/minimal-mistakes/pull/303)
## [3.1.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.6)
### Maintenance
- Update gem dependencies. Run `bundle` to update `Gemfile.lock`.
## [3.1.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.5)
### Maintenance
- Fix `www` and `https` links in author profile include [#293](https://github.com/mmistakes/minimal-mistakes/pull/293)
## [3.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.4)
### Enhancements
- Add `overlay_filter` param to hero headers [#298](https://github.com/mmistakes/minimal-mistakes/pull/298)
## [3.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.3)
### Enhancements
- Improve `site.locale` documentation [#284](https://github.com/mmistakes/minimal-mistakes/issues/284)
- Remove ProTip note about protocol-less `site.url` as it is an anti-pattern [#288](https://github.com/mmistakes/minimal-mistakes/issues/288)
### Bug Fixes
- Fix `og_image` URL in seo.html [#277](https://github.com/mmistakes/minimal-mistakes/issues/277)
- Fix `author_profile` toggle when assigned in a `_layout` [#285](https://github.com/mmistakes/minimal-mistakes/issues/285)
- Fix typo in `build:all` npm script [#283](https://github.com/mmistakes/minimal-mistakes/pull/283)
- Fix URL typo documentation [#287](https://github.com/mmistakes/minimal-mistakes/issues/287)
- 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)
## [3.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.2)
### Enhancements
- Explain how to use `nav_list` helper in [documentation](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list).
- Reduce left/right padding on smaller screens to increase width of main content column.
### Bug Fixes
- 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).
## [3.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.1)
### Bug Fix
- Fixed reading time bug when `words_per_minute` wasn't set in `_config.yml` [#271](https://github.com/mmistakes/minimal-mistakes/issues/271)
## [3.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.1.0)
### Enhancements
- Updated [Font Awesome](https://fortawesome.github.io/Font-Awesome/whats-new/) to version 4.6.1
- Added optional GitHub and Bitbucket links to footer if set on `site.author` in `_config.yml`.
### Bug Fixes
- Fixed Bitbucket URL typo in author sidebar.
## [3.0.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.0.3)
### Enhancements
- Rebuilt the entire theme: layouts, includes, stylesheets, scripts, you name it.
- Refreshed the look and feel while staying true to the original design of the theme (author sidebar/main content).
- Replaced grid system with [Susy](http://susy.oddbird.net/).
- Replaced Grunt tasks with `npm` scripts.
- 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)
- Greatly improved [theme documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
- Increased the amount of sample posts, sample pages, and sample collections to throughly test the theme and edge-cases.
- Moved all sample content and assets out of `master` to keep it as clean as possible for forking.
- 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.
- Added taxonomy links to posts (tags and categories).
- Added optional "reading time" meta data.
- Improved Liquid used for Twitter Cards and Open Graph data in `<head>`.
- Improved `gallery` include helper and added `feature_row` for use with splash page layout.
- Added Keybase.io, author web URI, and Bitbucket optional links to sidebar.
- Add `feed.xml` link to footer.
- Added a [UI text data file](https://mmistakes.github.io/minimal-mistakes/docs/ui-text/) to easily change all text found in the theme.
- Added LinkedIn to optional social share buttons.
- Added Facebook, Google+, and custom commenting options in addition to Disqus.
- Added optional breadcrumb links.
## [2.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.1)
## [2.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.0)
### Enhancements
- Add support for Jekyll 3.0
- Minor updates to syntax highlighting CSS and theme documentation
## [2.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.3)
### Enhancements
- Cleaner print styles that remove the top navigation, social sharing buttons, and other elements not needed when printed.
## [2.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.2)
### Enhancements
- Add optional CodePen icon/url to author side bar [#156](https://github.com/mmistakes/minimal-mistakes/pull/156)
- Documented Stackoverflow username explanation in `_config.yml` [#157](https://github.com/mmistakes/minimal-mistakes/pull/157)
- Simplified Liquid in `post-index.html` to better handle year listings [#166](https://github.com/mmistakes/minimal-mistakes/pull/166)
### Bug Fixes
- Cleanup Facebook related Open Graph meta tags [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
- Corrected minor typos [#158](https://github.com/mmistakes/minimal-mistakes/pull/158) [#175](https://github.com/mmistakes/minimal-mistakes/issues/175)
## [2.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.1)
### Enhancements
- Add optional XING profile link to author sidebar
- Include open graph meta tags for feature image (if assigned) [#149](https://github.com/mmistakes/minimal-mistakes/issues/149)
- Create an include for feed footer
### Bug Fixes
- Remove http protocol from Google search form on sample 404 page
- Only show related posts if there are one or more available
- Fix alignment of email address link in author sidebar
## [2.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.1.0)
### Enhancements
- Add optional social sharing buttons ([#42](https://github.com/mmistakes/minimal-mistakes/issues/42))

- 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.
- Fix typos in posts and documentation and remove references to Less
- Include note about Octopress gem being optional
- Post author override support extended to the Atom feed ([#71](https://github.com/mmistakes/minimal-mistakes/pull/71))
- Only include email address in feed if specified in `_config.yml` or author `_data`
- Wrap all page content in `#main` to harmonize article and post index styles ([#86](https://github.com/mmistakes/minimal-mistakes/issues/86))
- Include new sample feature images for posts and pages
- Table of contents improvements: fix collapse toggle, indent nested elements, show on small screens, and create an `_include` for reusing in posts and pages.
- Include note about running Jekyll with `bundle exec` when using Bundler
- Fix home page path in top navigation
- Remove Google Authorship ([#120](https://github.com/mmistakes/minimal-mistakes/issues/120))
- Remove duplicate author content that displayed in `div.article-author-bottom`
- Removed unused `_sass/print.scss` styles
- Improve comments in `.scss` files
## [2.0.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/v2.0)
## [1.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.3)
### Enhancements
- Added new icons and profile links for Stackoverflow, Dribbble, Pinterest, Foursquare, and Steam to the author bio sidebar.
- Cleaned up the Kramdown auto table of contents styling to be more readable
- Removed page width specific .less stylesheets and created mixins for easier updating
- Removed Modernizr since it wasn't being used
- Added pages to sitemap.xml
- Added category: to rake new_post task
- Minor typographic changes
### Bug Fixes
- Corrected various broken links in README and Theme Setup.
## [1.3.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.3.1)
### Enhancements
- Cleaned up table of contents styling
- 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.

## [1.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.2.0)
### Bug Fixes
- Table weren't filling the entire width of the content container. They now scale at 100%. Thanks [@dhruvbhatia](https://github.com/dhruvbhatia)
### Enhancements
- Decreased spacing between Markdown footnotes
- Removed dark background on footer
- Removed UPPERCASE styling on post titles in the index listing
## [1.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.4)
### Bug Fixes
- Fix top navigation bug issue ([#10](https://github.com/mmistakes/minimal-mistakes/issues/10)) for real this time. Remember to clear your floats kids.
## [1.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.3)
### Bug Fixes
- Fix top navigation links that weren't click able on small viewports (Issue [#10](https://github.com/mmistakes/minimal-mistakes/issues/10)).
- Remove line wrap from top navigation links that may span multiple lines.
## [1.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.2)
### Enhancements
- Added Grunt build script for compiling Less/JavaScript and optimizing image assets.
- Added support for large image summary Twitter card.
- Stylesheet adjustments
## [1.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.1)
### Bug Fixes
- 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.
### Enhancements
- Added [image attribution](http://mmistakes.github.io/minimal-mistakes/theme-setup/#feature-images) for post and page feature images.
- Added [404 page](http://mmistakes.github.io/minimal-mistakes/404.html).
- Cleaned up various Less variables to better align with naming conventions used in other MM Jekyll themes.
- Removed Chrome Frame references.
- Added global CSS3 transitions to text and block elements.
- Improved typography in a few places.
## [1.0.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.2)
### Enhancements
- Google Analytics, Google Authorship, webmaster verifies, and Twitter card meta are now optional.
## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1)
================================================
FILE: Gemfile
================================================
source "https://rubygems.org"
gemspec
================================================
FILE: LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2013-2024 Michael Rose and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# [Minimal Mistakes Jekyll theme](https://mmistakes.github.io/minimal-mistakes/)
[](https://raw.githubusercontent.com/mmistakes/minimal-mistakes/master/LICENSE)
[](https://jekyllrb.com/)
Minimal Mistakes is a flexible two-column Jekyll theme, perfect for building personal sites, blogs, and portfolios. As the name implies, styling is purposely minimalistic to be enhanced and customized by you :smile:.
:sparkles: See what's new in the [CHANGELOG](CHANGELOG.md).
**Note:** The theme uses the [jekyll-include-cache](https://github.com/benbalter/jekyll-include-cache) plugin which will need to be installed in your `Gemfile` and must be retained in the `plugins` array of `_config.yml`. Otherwise you'll encounter `Unknown tag 'include_cached'` errors at build.
[![Minimal Mistakes live preview][2]][1]
[1]: https://mmistakes.github.io/minimal-mistakes/
[2]: screenshot.png (live preview)

## Notable features
- Bundled as a "theme gem" for easier installation/upgrading.
- Compatible with GitHub Pages.
- Support for Jekyll's built-in Sass/SCSS preprocessor.
- Nine different skins (color variations).
- Several responsive layout options (single, archive index, search, splash, and paginated home page).
- Optimized for search engines with support for [Twitter Cards](https://dev.twitter.com/cards/overview) and [Open Graph](http://ogp.me/) data.
- Optional [header images](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#headers), [custom sidebars](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#sidebars), [table of contents](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#table-of-contents), [galleries](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery), related posts, [breadcrumb links](https://mmistakes.github.io/minimal-mistakes/docs/configuration/#breadcrumb-navigation-beta), [navigation lists](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list), and more.
- Commenting support (powered by [Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), static-based via [Staticman](https://staticman.net/), [utterances](https://utteranc.es/), and [giscus](https://giscus.app/)).
- [Google Analytics](https://www.google.com/analytics/) support.
- [Swetrix](https://swetrix.com/) GDPR-compliant analytics support.
- UI localized text in English (default), Arabic (عربي), Brazilian Portuguese (Português brasileiro), Bulgarian, Catalan, Chinese, Czech, Danish, Dutch, Finnish, French (Français), German (Deutsch), Greek, Hebrew, Hindi (हिंदी), Hungarian, Indonesian, Irish (Gaeilge), Italian (Italiano), Japanese, Kiswahili, Korean, Malayalam, Myanmar (Burmese), Nepali (Nepalese), Norwegian (Norsk), Persian (فارسی), Polish, Punjabi (ਪੰਜਾਬੀ), Romanian, Russian, Slovak, Spanish (Español), Swedish, Thai, Turkish (Türkçe), Ukrainian (Українська) and Vietnamese.
## Skins (color variations)
This theme comes in 11 different skins (in addition to the default one).
| `air` | `contrast` | `dark` |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [](https://mmistakes.github.io/minimal-mistakes/assets/images/air-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/contrast-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/dark-skin-archive-large.png) |
| `dirt` | `mint` | `sunrise` |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [](https://mmistakes.github.io/minimal-mistakes/assets/images/dirt-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/mint-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/sunrise-skin-archive-large.png) |
| `aqua` | `neon` | `plum` |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [](https://mmistakes.github.io/minimal-mistakes/assets/images/aqua-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/neon-skin-archive-large.png) | [](https://mmistakes.github.io/minimal-mistakes/assets/images/plum-skin-archive-large.png) |
| `catppuccin_latte` | `catppuccin_mocha` |
| --- | --- |
|  |  |
## Demo pages
| Name | Description |
| ----------------------------------------------- | ------------------------------------------------------------- |
| [Post with Header Image][header-image-post] | A post with a large header image. |
| [HTML Tags and Formatting Post][html-tags-post] | A variety of common markup showing how the theme styles them. |
| [Syntax Highlighting Post][syntax-post] | Post displaying highlighted code. |
| [Post with a Gallery][gallery-post] | A post showing several images wrapped in `<figure>` elements. |
| [Sample Collection Page][sample-collection] | Single page from a collection. |
| [Categories Archive][categories-archive] | Posts grouped by category. |
| [Tags Archive][tags-archive] | Posts grouped by tag. |
Additional sample posts are available under [posts archive][year-archive] on the demo site. Source files for these (and the entire demo site) can be found in [`/docs`](docs).
[header-image-post]: https://mmistakes.github.io/minimal-mistakes/layout-header-image-text-readability/
[gallery-post]: https://mmistakes.github.io/minimal-mistakes/post%20formats/post-gallery/
[html-tags-post]: https://mmistakes.github.io/minimal-mistakes/markup/markup-html-tags-and-formatting/
[syntax-post]: https://mmistakes.github.io/minimal-mistakes/markup-syntax-highlighting/
[sample-collection]: https://mmistakes.github.io/minimal-mistakes/recipes/chocolate-chip-cookies/
[categories-archive]: https://mmistakes.github.io/minimal-mistakes/categories/
[tags-archive]: https://mmistakes.github.io/minimal-mistakes/tags/
[year-archive]: https://mmistakes.github.io/minimal-mistakes/year-archive/
## Installation
There are three ways to install: as a [gem-based theme](https://jekyllrb.com/docs/themes/#understanding-gem-based-themes), as a [remote theme](https://blog.github.com/2017-11-29-use-any-theme-with-github-pages/) (GitHub Pages compatible), or forking/directly copying all of the theme files into your project.
### Gem-based method
With Gem-based themes, directories such as the `assets`, `_layouts`, `_includes`, and `_sass` are stored in the theme’s gem, hidden from your immediate view. Yet all of the necessary directories will be read and processed during Jekyll’s build process.
This allows for easier installation and updating as you don't have to manage any of the theme files. To install:
1. Add the following to your `Gemfile`:
```ruby
gem "minimal-mistakes-jekyll"
```
2. Fetch and update bundled gems by running the following [Bundler](http://bundler.io/) command:
```bash
bundle
```
3. Set the `theme` in your project's Jekyll `_config.yml` file:
```yaml
theme: minimal-mistakes-jekyll
```
To update the theme run `bundle update`.
### Remote theme method
Remote themes are similar to Gem-based themes, but do not require `Gemfile` changes or whitelisting making them ideal for sites hosted with GitHub Pages.
To install:
1. Create/replace the contents of your `Gemfile` with the following:
```ruby
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
gem "jekyll-include-cache", group: :jekyll_plugins
```
2. Add `jekyll-include-cache` to the `plugins` array of your `_config.yml`.
3. Fetch and update bundled gems by running the following [Bundler](https://bundler.io/) command:
```bash
bundle
```
4. Add `remote_theme: "mmistakes/minimal-mistakes@4.28.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
<!--
Dev note: The version number is currently hard-coded in these files:
- package.json
- README.md (this file)
- docs/_data/theme.yml
- docs/_pages/home.md (in Front Matter "excerpt")
`package.json` holds the authoritative version number, and the others can be updated with `bundle exec rake version`.
The following files should also be regenerated:
- _includes/copyright.html, _includes/copyright.js, _sass/minimal-mistakes/_copyright.scss
(Run `bundle exec rake clean` then `bundle exec rake copyright` - all three references `package.json`)
- assets/js/main.min.js (Run `bundle exec rake js`, references `_includes/copyright.js`)
*Tip*: The default Rake task will update all of the above files at once.
Additionally, the license year is hard-coded in these files and are NOT covered by a Rake task:
- README.md (this file, near the end)
- LICENSE
-->
**Looking for an example?** Use the [Minimal Mistakes remote theme starter](https://github.com/mmistakes/mm-github-pages-starter/generate) for the quickest method of getting a GitHub Pages hosted site up and running. Generate a new repository from the starter, replace sample content with your own, and configure as needed.
## Usage
For detailed instructions on how to configure, customize, add/migrate content, and more read the [theme's documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
## Contributing
Found a typo in the documentation or interested in [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
For help with using the theme or general Jekyll support questions, please use the [Jekyll Talk forums](https://talk.jekyllrb.com/).
### Pull Requests
When submitting a pull request:
1. Clone the repo.
2. Create a branch off of `master` and give it a meaningful name (e.g. `my-awesome-new-feature`).
3. Open a pull request on GitHub and describe the feature or fix.
Theme documentation and demo pages can be found in the [`/docs`](docs) if submitting improvements, typo corrections, etc.
## Development
To set up your environment to develop this theme, run `bundle install`.
To test the theme, run `bundle exec rake preview` and open your browser at `http://localhost:4000/test/`. This starts a Jekyll server using content in the `test/` directory. As modifications are made to the theme and test site, it will regenerate and you should see the changes in the browser after a refresh.
## Credits
### Creator
**Michael Rose**
- <https://mademistakes.com>
- <https://twitter.com/mmistakes>
- <https://github.com/mmistakes>
### Icons + Demo Images:
- [The Noun Project](https://thenounproject.com) - Garrett Knoll, Arthur Shlain, and [tracy tam](https://thenounproject.com/tracytam)
- [Font Awesome](http://fontawesome.io/)
- [Unsplash](https://unsplash.com/)
### Other:
- [Jekyll](http://jekyllrb.com/)
- [jQuery](http://jquery.com/)
- [Susy](http://susy.oddbird.net/)
- [Breakpoint](http://breakpoint-sass.com/)
- [Magnific Popup](http://dimsemenov.com/plugins/magnific-popup/)
- [FitVids.JS](http://fitvidsjs.com/)
- [GreedyNav.js](https://github.com/lukejacksonn/GreedyNav)
- [Smooth Scroll](https://github.com/cferdinandi/smooth-scroll)
- [Gumshoe](https://github.com/cferdinandi/gumshoe)
- [jQuery throttle / debounce](http://benalman.com/projects/jquery-throttle-debounce-plugin/)
- [Lunr](http://lunrjs.com)
- [Clipboard.js](https://clipboardjs.com)
## License
The MIT License (MIT)
Copyright (c) 2013-2024 Michael Rose and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Minimal Mistakes incorporates icons from [The Noun Project](https://thenounproject.com/)
creators Garrett Knoll, Arthur Shlain, and tracy tam.
Icons are distributed under Creative Commons Attribution 3.0 United States (CC BY 3.0 US).
Minimal Mistakes incorporates [Font Awesome](http://fontawesome.io/),
Copyright (c) 2017 Dave Gandy.
Font Awesome is distributed under the terms of the [SIL OFL 1.1](http://scripts.sil.org/OFL)
and [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates photographs from [Unsplash](https://unsplash.com).
Minimal Mistakes incorporates [Susy](http://susy.oddbird.net/),
Copyright (c) 2017, Miriam Eric Suzanne.
Susy is distributed under the terms of the [BSD 3-clause "New" or "Revised" License](https://opensource.org/licenses/BSD-3-Clause).
Minimal Mistakes incorporates [Breakpoint](http://breakpoint-sass.com/).
Breakpoint is distributed under the terms of the [MIT/GPL Licenses](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [FitVids.js](https://github.com/davatron5000/FitVids.js/),
Copyright (c) 2013 Dave Rubert and Chris Coyier.
FitVids is distributed under the terms of the [WTFPL License](http://www.wtfpl.net/).
Minimal Mistakes incorporates [Magnific Popup](http://dimsemenov.com/plugins/magnific-popup/),
Copyright (c) 2014-2016 Dmitry Semenov, http://dimsemenov.com.
Magnific Popup is distributed under the terms of the MIT License.
Minimal Mistakes incorporates [Smooth Scroll](http://github.com/cferdinandi/smooth-scroll),
Copyright (c) 2019 Chris Ferdinandi.
Smooth Scroll is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [Gumshoejs](http://github.com/cferdinandi/gumshoe),
Copyright (c) 2019 Chris Ferdinandi.
Gumshoejs is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [jQuery throttle / debounce](http://benalman.com/projects/jquery-throttle-debounce-plugin/),
Copyright (c) 2010 "Cowboy" Ben Alman.
jQuery throttle / debounce is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [GreedyNav.js](https://github.com/lukejacksonn/GreedyNav),
Copyright (c) 2015 Luke Jackson.
GreedyNav.js is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [Jekyll Group-By-Array](https://github.com/mushishi78/jekyll-group-by-array),
Copyright (c) 2015 Max White <mushishi78@gmail.com>.
Jekyll Group-By-Array is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [@allejo's Pure Liquid Jekyll Table of Contents](https://allejo.io/blog/a-jekyll-toc-in-liquid-only/),
Copyright (c) 2017 Vladimir Jimenez.
Pure Liquid Jekyll Table of Contents is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [Lunr](http://lunrjs.com),
Copyright (c) 2018 Oliver Nightingale.
Lunr is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Minimal Mistakes incorporates [clipboard.js](https://clipboardjs.com/),
Copyright (c) 2021 Zeno Rocha.
Clipboard.js is distributed under the terms of the [MIT License](https://opensource.org/licenses/MIT).
================================================
FILE: Rakefile
================================================
require "bundler/gem_tasks"
require "jekyll"
require "json"
require "listen"
require "rake/clean"
require "shellwords"
require "time"
require "yaml"
task :default => %i[copyright changelog js version]
package_json = JSON.parse(File.read("package.json"))
def listen_ignore_paths(base, options)
[
/_config\.ya?ml/,
/_site/,
/\.jekyll-metadata/
]
end
def listen_handler(base, options)
site = Jekyll::Site.new(options)
Jekyll::Command.process_site(site)
proc do |modified, added, removed|
t = Time.now
c = modified + added + removed
n = c.length
relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s }
print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ")
begin
Jekyll::Command.process_site(site)
puts "regenerated in #{Time.now - t} seconds."
rescue => e
puts "error:"
Jekyll.logger.warn "Error:", e.message
Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information."
end
end
end
task :preview do
base = Pathname.new('.').expand_path
options = {
"source" => base.join('test').to_s,
"destination" => base.join('test/_site').to_s,
"force_polling" => false,
"serving" => true,
"theme" => "minimal-mistakes-jekyll"
}
options = Jekyll.configuration(options)
ENV["LISTEN_GEM_DEBUGGING"] = "1"
listener = Listen.to(
base.join("_data"),
base.join("_includes"),
base.join("_layouts"),
base.join("_sass"),
base.join("assets"),
options["source"],
:ignore => listen_ignore_paths(base, options),
:force_polling => options['force_polling'],
&(listen_handler(base, options))
)
begin
listener.start
Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'"
unless options['serving']
trap("INT") do
listener.stop
puts " Halting auto-regeneration."
exit 0
end
sleep
end
rescue ThreadError
# You pressed Ctrl-C, oh my!
end
Jekyll::Commands::Serve.process(options)
end
task :history => :changelog
task :changelog => "docs/_docs/18-history.md"
file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
front_matter = {
title: "History",
classes: "wide",
permalink: "/docs/history/",
excerpt: "Change log of enhancements and bug fixes made to the theme.",
sidebar: {
nav: "docs",
},
last_modified_at: Time.now.iso8601,
toc: false,
}
# https://stackoverflow.com/a/49553523/5958455
front_matter = JSON.parse(JSON.dump(front_matter))
File.open(t.name, "w") do |f|
f.puts front_matter.to_yaml
f.puts "---"
f.puts ""
f.puts "<!--\n Sourced from CHANGELOG.md\n See Rakefile `task :changelog` for details\n-->"
f.puts ""
f.puts "{% raw %}"
# Remove H1
changelog = File.read(t.prerequisites.first)
.gsub(/^# [^\n]*$/m, "")
.gsub(/\(#(\d+)\)$/m, "[#\\1](https://github.com/mmistakes/minimal-mistakes/issues/\\1)")
.strip
f.write changelog
f.puts ""
f.puts "{% endraw %}"
end
end
COPYRIGHT_LINES = [
"Minimal Mistakes Jekyll Theme #{package_json["version"]} by Michael Rose",
"Copyright 2013-#{Time.now.year} Michael Rose - mademistakes.com | @mmistakes",
"Copyright 2024-#{Time.now.year} iBug - ibugone.com | @iBug",
"Free for personal and commercial use under the MIT license",
"https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE",
]
COPYRIGHT_FILES = [
"_includes/copyright.html",
"_includes/copyright.js",
"_sass/minimal-mistakes/_copyright.scss",
]
def genenerate_copyright_file(filename, header, prefix, footer)
File.open(filename, "w") do |f|
f.puts header
COPYRIGHT_LINES.each do |line|
f.puts "#{prefix}#{line}"
end
f.puts footer
end
end
file "_includes/copyright.html" => "package.json" do |t|
genenerate_copyright_file(t.name, "<!--", " ", "-->")
end
file "_includes/copyright.js" => "package.json" do |t|
genenerate_copyright_file(t.name, "/*!", " * ", " */")
end
file "_sass/minimal-mistakes/_copyright.scss" => "package.json" do |t|
genenerate_copyright_file(t.name, "/*!", " * ", " */")
end
task :copyright => COPYRIGHT_FILES
CLEAN.include(*COPYRIGHT_FILES)
JS_FILES = ["assets/js/vendor/jquery/jquery-3.6.0.js"] + Dir.glob("assets/js/plugins/*.js") + ["assets/js/_main.js"]
JS_TARGET = "assets/js/main.min.js"
task :js => JS_TARGET
file JS_TARGET => ["_includes/copyright.js"] + JS_FILES do |t|
sh Shellwords.join(%w[npx uglifyjs -c --comments /@mmistakes/ --source-map -m -o] +
[t.name] + t.prerequisites)
end
task :watch_js do
listener = Listen.to(
"assets/js",
ignore: /main\.min\.js$/,
) do |modified, added, removed|
Rake::Task[:js].invoke
end
trap("INT") do
listener.stop
exit 0
end
begin
listener.start
sleep
rescue ThreadError
end
end
task :version => ["docs/_data/theme.yml", "README.md", "docs/_pages/home.md"]
file "docs/_data/theme.yml" => "package.json" do |t|
theme = { "version" => package_json["version"] }
File.open(t.name, "w") do |f|
f.puts "# for use with in-page templates"
f.puts theme.to_yaml
end
end
file "README.md" => "package.json" do |t|
content = File.read(t.name)
content = content.gsub(/(mmistakes\/minimal-mistakes@)[\d.]+/, '\1' + package_json["version"])
File.write(t.name, content)
end
file "docs/_pages/home.md" => "package.json" do |t|
content = File.read(t.name)
content = content.gsub(/(\breleases\/tag\/|Latest release v)[\d.]+/, '\1' + package_json["version"])
File.write(t.name, content)
end
task :gem do
sh 'gem build minimal-mistakes-jekyll.gemspec'
end
================================================
FILE: _config.yml
================================================
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your entire site, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# `jekyll serve`. If you change this file, please restart the server process.
# Theme Settings
#
# Review documentation to determine if you should use `theme` or `remote_theme`
# https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme
# theme : "minimal-mistakes-jekyll"
# remote_theme : "mmistakes/minimal-mistakes"
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise", "catppuccin_latte", "catppuccin_mocha"
# Site Settings
locale : "en-US"
rtl : # true, false (default) # turns direction of the page into right to left for RTL languages
title : "Site Title"
title_separator : "-"
subtitle : # site tagline that appears below site title in masthead
name : "Your Name"
description : "An amazing website."
url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
baseurl : # the subpath of your site, e.g. "/blog"
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
breadcrumbs : # true, false (default)
words_per_minute : 200
enable_copy_code_button : # true, false (default)
copyright : # "copyright" name, defaults to site.title
copyright_url : # "copyright" URL, defaults to site.url
comments:
provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
disqus:
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
discourse:
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
facebook:
# https://developers.facebook.com/docs/plugins/comments
appid :
num_posts : # 5 (default)
colorscheme : # "light" (default), "dark"
utterances:
theme : # "github-light" (default), "github-dark"
issue_term : # "pathname" (default)
giscus:
repo_id : # Shown during giscus setup at https://giscus.app
category_name : # Full text name of the category
category_id : # Shown during giscus setup at https://giscus.app
discussion_term : # "pathname" (default), "url", "title", "og:title"
reactions_enabled : # '1' for enabled (default), '0' for disabled
theme : # "light" (default), "dark", "dark_dimmed", "transparent_dark", "preferred_color_scheme"
strict : # 1 for enabled, 0 for disabled (default)
input_position : # "top", "bottom" # The comment input box will be placed above or below the comments
emit_metadata : # 1 for enabled, 0 for disabled (default) # https://github.com/giscus/giscus/blob/main/ADVANCED-USAGE.md#imetadatamessage
lang : # "en" (default)
lazy : # true, false # Loading of the comments will be deferred until the user scrolls near the comments container.
staticman:
branch : # "master"
endpoint : # "https://{your Staticman v3 API}/v3/entry/github/"
reCaptcha:
siteKey :
secret :
atom_feed:
path : # blank (default) uses feed.xml
hide : # true, false (default)
search : # true, false (default)
search_full_content : # true, false (default)
search_provider : # lunr (default), algolia, google
lunr:
search_within_pages : # true, false (default)
algolia:
application_id : # YOUR_APPLICATION_ID
index_name : # YOUR_INDEX_NAME
search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY
powered_by : # true (default), false
google:
search_engine_id : # YOUR_SEARCH_ENGINE_ID
instant_search : # false (default), true
# SEO Related
google_site_verification :
bing_site_verification :
naver_site_verification :
yandex_site_verification :
baidu_site_verification :
# Social Sharing
twitter:
username :
facebook:
username :
app_id :
publisher :
og_image : # Open Graph/Twitter default site image
og_image_alt : # Alt text for Open Graph/Twitter default site image
# For specifying social profiles
# - https://developers.google.com/structured-data/customize/social-profiles
social:
type : # Person or Organization (defaults to Person)
name : # If the user or organization name differs from the site's name
links: # An array of links to social media profiles
# Analytics
analytics:
provider : # false (default), "google", "google-universal", "google-gtag", "custom"
google:
tracking_id :
anonymize_ip : # true, false (default)
# Site Author
author:
name : "Your Name"
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
bio : "I am an **amazing** person."
location : "Somewhere"
email :
# fediverse : "@you@instance.social" # used for fediverse:creator meta tag
links:
- label: "Email"
icon: "fas fa-fw fa-square-envelope"
# url: "mailto:your.name@email.com"
- label: "Website"
icon: "fas fa-fw fa-link"
# url: "https://your-website.com"
- label: "Twitter"
icon: "fab fa-fw fa-square-x-twitter"
# url: "https://twitter.com/"
- label: "Facebook"
icon: "fab fa-fw fa-square-facebook"
# url: "https://facebook.com/"
- label: "GitHub"
icon: "fab fa-fw fa-github"
# url: "https://github.com/"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
# url: "https://instagram.com/"
# Site Footer
footer:
links:
- label: "Twitter"
icon: "fab fa-fw fa-square-x-twitter"
# url:
# rel: "me" # optional: adds rel attribute (e.g. for IndieWeb web sign-in)
- label: "Facebook"
icon: "fab fa-fw fa-square-facebook"
# url:
- label: "GitHub"
icon: "fab fa-fw fa-github"
# url:
- label: "GitLab"
icon: "fab fa-fw fa-gitlab"
# url:
- label: "Bitbucket"
icon: "fab fa-fw fa-bitbucket"
# url:
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
# url:
since: "2013"
# Reading Files
include:
- .htaccess
- _pages
exclude:
- "*.sublime-project"
- "*.sublime-workspace"
- vendor
- .asset-cache
- .bundle
- .jekyll-assets-cache
- .sass-cache
- assets/js/plugins
- assets/js/_main.js
- assets/js/vendor
- Capfile
- CHANGELOG
- config
- Gemfile
- Gruntfile.js
- gulpfile.js
- LICENSE
- log
- minimal-mistakes-jekyll.gemspec
- node_modules
- package.json
- package-lock.json
- Rakefile
- README
- tmp
- /docs # ignore Minimal Mistakes /docs
- /test # ignore Minimal Mistakes /test
keep_files:
- .git
- .svn
encoding: "utf-8"
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
# Conversion
markdown: kramdown
highlighter: rouge
lsi: false
excerpt_separator: "\n\n"
incremental: false
# Markdown Processing
kramdown:
input: GFM
hard_wrap: false
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
# Sass/SCSS
sass:
sass_dir: _sass
style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# Outputting
permalink: /:categories/:title/
timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Pagination with jekyll-paginate
paginate: 5 # amount of posts to show
paginate_path: /page:num/
# Pagination with jekyll-paginate-v2
# See https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration
# for configuration details
pagination:
# Set enabled to true to use paginate v2
# enabled: true
debug: false
collection: 'posts'
per_page: 10
permalink: '/page/:num/'
title: ':title - page :num'
limit: 0
sort_field: 'date'
sort_reverse: true
category: 'posts'
tag: ''
locale: ''
trail:
before: 2
after: 2
# Plugins (previously gems:)
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-gist
- jekyll-feed
- jekyll-include-cache
# mimic GitHub Pages with --safe
whitelist:
- jekyll-paginate
- jekyll-sitemap
- jekyll-gist
- jekyll-feed
- jekyll-include-cache
# Archives
# Type
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
# Path (examples)
# - Archive page should exist at path when using Liquid method or you can
# expect broken links (especially with breadcrumbs enabled)
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
# - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
# - <base_path>/my-awesome-category/index.html ~> path: /
category_archive:
type: liquid
path: /categories/
tag_archive:
type: liquid
path: /tags/
# show_taxonomy: false # set to false to hide tag/category lists on posts
# https://github.com/jekyll/jekyll-archives
# jekyll-archives:
# enabled:
# - categories
# - tags
# layouts:
# category: archive-taxonomy
# tag: archive-taxonomy
# permalinks:
# category: /categories/:name/
# tag: /tags/:name/
# HTML Compression
# - https://jch.penibelst.de/
compress_html:
clippings: all
ignore:
envs: development
# Defaults
defaults:
# _posts
- scope:
path: ""
type: posts
values:
layout: single
author_profile: true
read_time: true
comments: # true
share: true
related: true
================================================
FILE: _data/navigation.yml
================================================
# main links
main:
- title: "Quick-Start Guide"
url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/
# - title: "About"
# url: https://mmistakes.github.io/minimal-mistakes/about/
# - title: "Sample Posts"
# url: /year-archive/
# - title: "Sample Collections"
# url: /collection-archive/
# - title: "Sitemap"
# url: /sitemap/
================================================
FILE: _data/ui-text.yml
================================================
# User interface text and labels
# English (default)
# -----------------
en: &DEFAULT_EN
skip_links : "Skip links"
skip_primary_nav : "Skip to primary navigation"
skip_content : "Skip to content"
skip_footer : "Skip to footer"
page : "Page"
pagination_previous : "Previous"
pagination_next : "Next"
breadcrumb_home_label : "Home"
breadcrumb_separator : "/"
menu_label : "Toggle menu"
search_label : "Toggle search"
toc_label : "On this page"
ext_link_label : "Direct link"
less_than : "less than"
minute_read : "minute read"
share_on_label : "Share on"
meta_label :
tags_label : "Tags:"
categories_label : "Categories:"
date_label : "Updated:"
comments_label : "Leave a comment"
comments_title : "Comments"
more_label : "Learn more"
related_label : "You may also enjoy"
follow_label : "Follow:"
feed_label : "Feed"
powered_by : "Powered by"
website_label : "Website"
email_label : "Email"
recent_posts : "Recent posts"
undefined_wpm : "Undefined parameter words_per_minute at _config.yml"
comment_form_info : "Your email address will not be published. Required fields are marked"
comment_form_comment_label : "Comment"
comment_form_md_info : "Markdown is supported."
comment_form_name_label : "Name"
comment_form_email_label : "Email address"
comment_form_website_label : "Website (optional)"
comment_btn_submit : "Submit comment"
comment_btn_submitted : "Submitted"
comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved."
comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again."
loading_label : "Loading..."
search_label_text : "Enter your search term..."
search_placeholder_text : "Enter your search term..."
search_algolia_no_results : "No results"
results_found : "Result(s) found"
back_to_top : "Back to top"
en-US:
<<: *DEFAULT_EN
en-CA:
<<: *DEFAULT_EN
en-GB:
<<: *DEFAULT_EN
en-AU:
<<: *DEFAULT_EN
# Spanish
# -------
es: &DEFAULT_ES
skip_links : "Saltar enlaces"
skip_primary_nav : "Saltar a navegación principal"
skip_content : "Saltar a contenido"
skip_footer : "Saltar a pie"
page : "Página"
pagination_previous : "Anterior"
pagination_next : "Siguiente"
breadcrumb_home_label : "Inicio"
breadcrumb_separator : "/"
menu_label : "Alternar menú"
search_label : "Alternar búsqueda"
toc_label : "En esta página"
ext_link_label : "Enlace directo"
less_than : "menos de"
minute_read : "minuto(s) de lectura"
share_on_label : "Compartir en"
meta_label :
tags_label : "Etiquetas:"
categories_label : "Categorías:"
date_label : "Actualizado:"
comments_label : "Deja un comentario"
comments_title : "Comentarios"
more_label : "Ver más"
related_label : "Puede que también te interese"
follow_label : "Seguir:"
feed_label : "Feed"
powered_by : "Funciona con"
website_label : "Sitio web"
email_label : "Correo electrónico"
recent_posts : "Entradas recientes"
undefined_wpm : "El parámetro words_per_minute (palabras por minuto) no está definido en _config.yml"
comment_form_info : "Tu dirección de correo electrónico no se publicará. Los campos obligatorios están marcados"
comment_form_comment_label : "Comentario"
comment_form_md_info : "Puedes utilizar Markdown"
comment_form_name_label : "Nombre"
comment_form_email_label : "Dirección de correo electrónico"
comment_form_website_label : "Sitio web (opcional)"
comment_btn_submit : "Enviar comentario"
comment_btn_submitted : "Enviado"
comment_success_msg : "¡Gracias por tu comentario! Se publicará una vez sea aprobado."
comment_error_msg : "Ha ocurrido un error al enviar el comentario. Asegúrate de completar todos los campos obligatorios e inténtalo de nuevo."
loading_label : "Cargando..."
search_label_text : "Términos de búsqueda..."
search_placeholder_text : "Términos de búsqueda..."
search_algolia_no_results :
results_found : "resultado(s) encontrado(s)"
back_to_top : "Volver arriba"
es-ES:
<<: *DEFAULT_ES
es-CO:
<<: *DEFAULT_ES
# French
# ------
fr: &DEFAULT_FR
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Page"
pagination_previous : "Précédent"
pagination_next : "Suivant"
breadcrumb_home_label : "Accueil"
breadcrumb_separator : "/"
menu_label : "Menu"
search_label :
toc_label : "Sur cette page"
ext_link_label : "Lien direct"
less_than : "moins de"
minute_read : "minute(s) de lecture"
share_on_label : "Partager sur"
meta_label :
tags_label : "Tags :"
categories_label : "Catégories :"
date_label : "Mis à jour :"
comments_label : "Laisser un commentaire"
comments_title : "Commentaires"
more_label : "Lire plus"
related_label : "Vous pourriez aimer aussi"
follow_label : "Contact"
feed_label : "Flux"
powered_by : "Propulsé par"
website_label : "Site"
email_label : "Email"
recent_posts : "Posts récents"
undefined_wpm : "Le paramètre words_per_minute n'est pas défini dans _config.yml"
comment_form_info : "Votre adresse email ne sera pas visible. Les champs obligatoires sont marqués"
comment_form_comment_label : "Commentaire"
comment_form_md_info : "Markdown est supporté."
comment_form_name_label : "Nom"
comment_form_email_label : "Adresse mail"
comment_form_website_label : "Site web (optionnel)"
comment_btn_submit : "Envoyer"
comment_btn_submitted : "Envoyé"
comment_success_msg : "Merci pour votre commentaire, il sera visible sur le site une fois approuvé."
comment_error_msg : "Désolé, une erreur est survenue lors de la soumission. Vérifiez que les champs obligatoires ont été remplis et réessayez."
loading_label : "Chargement..."
search_label_text :
search_placeholder_text : "Entrez votre recherche..."
search_algolia_no_results :
results_found : "Résultat(s) trouvé(s)"
back_to_top : "Retour en haut"
fr-FR:
<<: *DEFAULT_FR
fr-BE:
<<: *DEFAULT_FR
fr-CH:
<<: *DEFAULT_FR
# Turkish
# -------
tr: &DEFAULT_TR
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Sayfa"
pagination_previous : "Önceki"
pagination_next : "Sonraki"
breadcrumb_home_label : "Ana Sayfa"
breadcrumb_separator : "/"
menu_label :
search_label :
toc_label : "İçindekiler"
ext_link_label : "Doğrudan Bağlantı"
less_than : "Şu süreden az: "
minute_read : "dakika tahmini okuma süresi"
share_on_label : "Paylaş"
meta_label :
tags_label : "Etiketler:"
categories_label : "Kategoriler:"
date_label : "Güncelleme tarihi:"
comments_label : "Yorum yapın"
comments_title : "Yorumlar"
more_label : "Daha fazlasını öğrenin"
related_label : "Bunlar ilginizi çekebilir:"
follow_label : "Takip et:"
feed_label : "RSS"
powered_by : "Emeği geçenler: "
website_label : "Web sayfası"
email_label : "E-posta"
recent_posts : "Son yazılar"
undefined_wpm : "_config.yml dosyasında tanımlanmamış words_per_minute parametresi"
comment_form_info : "Email adresiniz gösterilmeyecektir. Zorunlu alanlar işaretlenmiştir"
comment_form_comment_label : "Yorumunuz"
comment_form_md_info : "Markdown desteklenmektedir."
comment_form_name_label : "Adınız"
comment_form_email_label : "Email adresiniz"
comment_form_website_label : "Websiteniz (opsiyonel)"
comment_btn_submit : "Yorum Yap"
comment_btn_submitted : "Gönderildi"
comment_success_msg : "Yorumunuz için teşekkürler! Yorumunuz onaylandıktan sonra sitede gösterilecektir."
comment_error_msg : "Maalesef bir hata oluştu. Lütfen zorunlu olan tüm alanları doldurduğunuzdan emin olun ve sonrasında tekrar deneyin."
loading_label : "Yükleniyor..."
search_label_text :
search_algolia_no_results :
tr-TR:
<<: *DEFAULT_TR
# Portuguese
# ----------
pt: &DEFAULT_PT
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Página"
pagination_previous : "Anterior"
pagination_next : "Seguinte"
breadcrumb_home_label : "Início"
breadcrumb_separator : "/"
menu_label :
search_label :
toc_label : "Nesta Página"
ext_link_label : "Link Direto"
less_than : "menos de"
minute_read : "minutos de leitura"
share_on_label : "Partilhar no"
meta_label :
tags_label : "Etiquetas:"
categories_label : "Categorias:"
date_label : "Atualizado:"
comments_label : "Deixe um Comentário"
comments_title : "Comentários"
more_label : "Saber mais"
related_label : "Também pode gostar de"
follow_label : "Siga:"
feed_label : "Feed"
powered_by : "Feito com"
website_label : "Site"
email_label : "Email"
recent_posts : "Artigos Recentes"
undefined_wpm : "Parâmetro words_per_minute não definido em _config.yml"
comment_form_info : "O seu endereço email não será publicado. Os campos obrigatórios estão assinalados"
comment_form_comment_label : "Comentário"
comment_form_md_info : "Markdown é suportado."
comment_form_name_label : "Nome"
comment_form_email_label : "Endereço Email"
comment_form_website_label : "Site (opcional)"
comment_btn_submit : "Sumbeter Comentário"
comment_btn_submitted : "Submetido"
comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado."
comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente."
loading_label : "A carregar..."
search_label_text :
search_algolia_no_results :
pt-PT:
<<: *DEFAULT_PT
# Brazilian Portuguese
pt-BR:
skip_links : "Pular links"
skip_primary_nav : "Pular para navegação primária"
skip_content : "Pular para conteúdo"
skip_footer : "Pular para rodapé"
page : "Página"
pagination_previous : "Anterior"
pagination_next : "Próxima"
breadcrumb_home_label : "Início"
breadcrumb_separator : "/"
menu_label : "Chavear menu"
search_label : "Chavear busca"
toc_label : "Nesta página"
ext_link_label : "Link direto"
less_than : "menos de"
minute_read : "minuto(s) de leitura"
share_on_label : "Compartilhe"
meta_label :
tags_label : "Tags:"
categories_label : "Categorias:"
date_label : "Atualizado em:"
comments_label : "Deixe um comentário"
comments_title : "Comentários"
more_label : "Saiba mais"
related_label : "Talvez você também goste"
follow_label : "Siga:"
feed_label : "Feed"
powered_by : "Desenvolvido com"
website_label : "Site"
email_label : "E-mail"
recent_posts : "Publicações recentes"
undefined_wpm : "Parâmetro words_per_minute não definido em _config.yml"
comment_form_info : "Seu e-mail não será publicado. Os campos obrigatórios estão marcados"
comment_form_comment_label : "Comentário"
comment_form_md_info : "Você pode usar Markdown."
comment_form_name_label : "Nome"
comment_form_email_label : "E-mail"
comment_form_website_label : "Site (opcional)"
comment_btn_submit : "Enviar comentário"
comment_btn_submitted : "Enviado"
comment_success_msg : "Obrigado pelo seu comentário! Ele aparecerá no site assim que for aprovado."
comment_error_msg : "Desculpe, ocorreu um erro no envio. Verifique se todos os campos obrigatórios foram preenchidos e tente novamente."
loading_label : "Carregando..."
search_label_text : "Digite seu termo de busca..."
search_placeholder_text : "Digite seu termo de busca..."
search_algolia_no_results : "Nenhum resultado"
results_found : "Resultado(s) encontrado(s)"
back_to_top : "Voltar para o topo"
# Italian
# -------
it: &DEFAULT_IT
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Pagina"
pagination_previous : "Precedente"
pagination_next : "Prossima"
breadcrumb_home_label : "Home"
breadcrumb_separator : "/"
menu_label :
search_label :
toc_label : "Indice della pagina"
ext_link_label : "Link"
less_than : "meno di"
minute_read : "minuto/i di lettura"
share_on_label : "Condividi"
meta_label :
tags_label : "Tags:"
categories_label : "Categorie:"
date_label : "Aggiornato:"
comments_label : "Scrivi un commento"
comments_title :
more_label : "Scopri di più"
related_label : "Potrebbe Piacerti Anche"
follow_label : "Segui:"
feed_label : "Feed"
powered_by : "Powered by"
website_label : "Website"
email_label : "Email"
recent_posts : "Articoli Recenti"
undefined_wpm : "Parametro words_per_minute non definito in _config.yml"
comment_form_info : "Il tuo indirizzo email non sarà pubblicato. Sono segnati i campi obbligatori"
comment_form_comment_label : "Commenta"
comment_form_md_info : "Il linguaggio Markdown è supportato"
comment_form_name_label : "Nome"
comment_form_email_label : "Indirizzo email"
comment_form_website_label : "Sito Web (opzionale)"
comment_btn_submit : "Invia commento"
comment_btn_submitted : "Inviato"
comment_success_msg : "Grazie per il tuo commento! Verrà visualizzato nel sito una volta che sarà approvato."
comment_error_msg : "C'è stato un errore con il tuo invio. Assicurati che tutti i campi richiesti siano stati completati e riprova."
loading_label : "Caricamento..."
search_label_text :
search_placeholder_text : "Inserisci termini di ricerca..."
search_algolia_no_results :
results_found : "Risultati"
back_to_top : "Vai su"
it-IT:
<<: *DEFAULT_IT
# Chinese (zh-CN Chinese - China)
# --------------------------------
zh: &DEFAULT_ZH_HANS
skip_links : "跳转链接"
skip_primary_nav : "转到主导航栏"
skip_content : "转到内容"
skip_footer : "转到底部"
page : "页面"
pagination_previous : "上一页"
pagination_next : "下一页"
breadcrumb_home_label : "首页"
breadcrumb_separator : "/"
menu_label : "切换菜单"
search_label : "切换搜索"
toc_label : "目录"
ext_link_label : "直接链接"
less_than : "少于"
minute_read : "分钟阅读"
share_on_label : "分享"
meta_label :
tags_label : "标签:"
categories_label : "分类:"
date_label : "更新时间:"
comments_label : "留下评论"
comments_title : "评论"
more_label : "了解更多"
related_label : "猜您还喜欢"
follow_label : "关注:"
feed_label : "Feed"
powered_by : "技术来自于"
website_label : "网站"
email_label : "电子邮箱"
recent_posts : "最新文章"
undefined_wpm : "_config.yml 配置中 words_per_minute 字段未定义"
comment_form_info : "您的电子邮箱地址并不会被展示。请填写标记为必须的字段。"
comment_form_comment_label : "评论"
comment_form_md_info : "支持 Markdown 语法。"
comment_form_name_label : "姓名"
comment_form_email_label : "电子邮箱"
comment_form_website_label : "网站(可选)"
comment_btn_submit : "提交评论"
comment_btn_submitted : "已提交"
comment_success_msg : "感谢您的评论!被批准后它会立即在此站点展示。"
comment_error_msg : "很抱歉,您的提交存在错误。请确保所有必填字段都已填写正确,然后再试一次。"
loading_label : "正在加载..."
search_label_text : "输入您要搜索的关键词..."
search_placeholder_text : "输入您要搜索的关键词..."
search_algolia_no_results : "无结果"
results_found : "条记录匹配"
back_to_top : "返回顶部"
zh-CN:
<<: *DEFAULT_ZH_HANS
zh-SG:
<<: *DEFAULT_ZH_HANS
# Taiwan (Traditional Chinese)
zh-TW: &DEFAULT_ZH_HANT
skip_links : "跳過連結"
skip_primary_nav : "跳至主導覽"
skip_content : "跳至內容"
skip_footer : "跳至頁尾"
page : "頁面"
pagination_previous : "上一頁"
pagination_next : "下一頁"
breadcrumb_home_label : "首頁"
breadcrumb_separator : "/"
menu_label : "選單"
search_label : "搜尋"
toc_label : "本頁目錄"
ext_link_label : "外部連結"
less_than : "少於"
minute_read : "分鐘閱讀"
share_on_label : "分享至"
meta_label :
tags_label : "標籤:"
categories_label : "分類:"
date_label : "更新時間:"
comments_label : "留言"
comments_title : "留言"
more_label : "閱讀更多"
related_label : "您可能也會有興趣"
follow_label : "追蹤:"
feed_label : "訂閱 Feed"
powered_by : "採用技術:"
website_label : "網站"
email_label : "電子郵件"
recent_posts : "最新文章"
undefined_wpm : "設定檔 (_config.yml) 中缺少 `words_per_minute` 參數"
comment_form_info : "您的電子郵件不會被公開。必填欄位已標註星號 (*)"
comment_form_comment_label : "留言"
comment_form_md_info : "支援 Markdown 語法。"
comment_form_name_label : "名稱"
comment_form_email_label : "電子郵件地址"
comment_form_website_label : "網站 (選填)"
comment_btn_submit : "送出留言"
comment_btn_submitted : "已送出"
comment_success_msg : "感謝您的留言! 審核後將會顯示在站上。"
comment_error_msg : "抱歉,您提交的資料有誤。請確認所有必填欄位皆已正確填寫後再試一次。"
loading_label : "載入中..."
search_label_text : "輸入您要搜尋的關鍵字..."
search_placeholder_text : "輸入您要搜尋的關鍵字..."
search_algolia_no_results : "找不到結果"
results_found : "找到結果"
back_to_top : "回到頁首"
zh-HK:
<<: *DEFAULT_ZH_HANT
# German / Deutsch
# ----------------
de: &DEFAULT_DE
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Seite"
pagination_previous : "Vorherige"
pagination_next : "Nächste"
breadcrumb_home_label : "Start"
breadcrumb_separator : "/"
menu_label : "Menü ein-/ausschalten"
search_label :
toc_label : "Auf dieser Seite"
ext_link_label : "Direkter Link"
less_than : "weniger als"
minute_read : "Minuten zum Lesen"
share_on_label : "Teilen auf"
meta_label :
tags_label : "Tags:"
categories_label : "Kategorien:"
date_label : "Aktualisiert:"
comments_label : "Hinterlassen Sie einen Kommentar"
comments_title : "Kommentare"
more_label : "Mehr anzeigen"
related_label : "Ihnen gefällt vielleicht auch"
follow_label : "Folgen:"
feed_label : "Feed"
powered_by : "Möglich durch"
website_label : "Webseite"
email_label : "E-Mail"
recent_posts : "Aktuelle Beiträge"
undefined_wpm : "Undefinierter Parameter words_per_minute in _config.yml"
comment_form_info : "Ihre E-Mail Adresse wird nicht veröffentlicht. Benötigte Felder sind markiert"
comment_form_comment_label : "Kommentar"
comment_form_md_info : "Markdown wird unterstützt."
comment_form_name_label : "Name"
comment_form_email_label : "E-Mail-Addresse"
comment_form_website_label : "Webseite (optional)"
comment_btn_submit : "Kommentar absenden"
comment_btn_submitted : "Versendet"
comment_success_msg : "Danke für Ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde."
comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen Sie alle benötigten Felder aus und versuchen Sie es erneut."
loading_label : "Lade..."
search_label_text :
search_placeholder_text : "Suchbegriff eingeben..."
search_algolia_no_results :
results_found : "Ergebnis(se) gefunden"
de-DE:
<<: *DEFAULT_DE
de-AT:
<<: *DEFAULT_DE
de-CH:
<<: *DEFAULT_DE
de-BE:
<<: *DEFAULT_DE
de-LI:
<<: *DEFAULT_DE
de-LU:
<<: *DEFAULT_DE
# Nepali (Nepal)
# --------------
ne: &DEFAULT_NE
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "पृष्ठ"
pagination_previous : "अघिल्लो"
pagination_next : "अर्को"
breadcrumb_home_label : "गृह"
breadcrumb_separator : "/"
menu_label : "टगल मेनु"
search_label :
toc_label : "यो पृष्ठमा"
ext_link_label : "सिधा सम्पर्क"
less_than : "कम्तिमा"
minute_read : "मिनेट पढ्नुहोस्"
share_on_label : "शेयर गर्नुहोस्"
meta_label :
tags_label : "ट्यागहरू:"
categories_label : "वर्गहरु:"
date_label : "अद्यावधिक:"
comments_label : "टिप्पणी दिनुहोस्"
comments_title : "टिप्पणीहरू"
more_label : "अझै सिक्नुहोस्"
related_label : "तपाईं रुचाउन सक्नुहुन्छ "
follow_label : "पछ्याउनुहोस्:"
feed_label : "फिड"
powered_by : "Powered by"
website_label : "वेबसाइट"
email_label : "इमेल"
recent_posts : "ताजा लेखहरु"
undefined_wpm : "अपरिभाषित प्यारामिटर शब्दहरू_प्रति_मिनेट at _config.yml"
comment_form_info : "तपाइँको इमेल ठेगाना प्रकाशित गरिने छैन।आवश्यक जानकारीहरुमा चिन्ह लगाइको छ"
comment_form_comment_label : "टिप्पणी"
comment_form_md_info : "मार्कडाउन समर्थित छ।"
comment_form_name_label : "नाम"
comment_form_email_label : "इमेल ठेगाना"
comment_form_website_label : "वेबसाइट (वैकल्पिक)"
comment_btn_submit : "टिप्पणी दिनुहोस् "
comment_btn_submitted : "टिप्पणी भयो"
comment_success_msg : "तपाईंको टिप्पणीको लागि धन्यवाद! एक पटक यो अनुमोदन गरेपछी यो साइटमा देखाउनेछ।"
comment_error_msg : "माफ गर्नुहोस्, तपाईंको टिप्पणी त्रुटि थियो।सबै आवश्यक जानकारीहरु पूरा गरिएको छ भने निश्चित गर्नुहोस् र फेरि प्रयास गर्नुहोस्।"
loading_label : "लोड हुँदैछ ..."
search_label_text :
search_algolia_no_results :
ne-NP:
<<: *DEFAULT_NE
# Korean
# ------
ko: &DEFAULT_KO
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "페이지"
pagination_previous : "이전"
pagination_next : "다음"
breadcrumb_home_label : "홈"
breadcrumb_separator : "/"
menu_label : "토글 메뉴"
search_label :
toc_label : "목차"
ext_link_label : "직접 링크"
less_than : "최대"
minute_read : "분 소요"
share_on_label : "공유하기"
meta_label :
tags_label : "태그:"
categories_label : "카테고리:"
date_label : "업데이트:"
comments_label : "댓글 남기기"
comments_title : "댓글"
more_label : "더 보기"
related_label : "참고"
follow_label : "팔로우:"
feed_label : "피드"
powered_by : "제작 지원: "
website_label : "웹사이트"
email_label : "이메일"
recent_posts : "최근 포스트"
undefined_wpm : "_config.yml 파일에 words_per_minute 값이 설정되어 있지 않습니다."
comment_form_info : "이메일은 공개되지 않습니다. 작성 필요 필드:"
comment_form_comment_label : "댓글"
comment_form_md_info : "마크다운을 지원합니다."
comment_form_name_label : "이름"
comment_form_email_label : "이메일"
comment_form_website_label : "웹사이트(선택사항)"
comment_btn_submit : "댓글 등록"
comment_btn_submitted : "등록됨"
comment_success_msg : "댓글이 등록되었습니다. 등록된 내용은 관리자 승인 후에 표시됩니다."
comment_error_msg : "댓글이 등록되지 않았습니다. 필수 입력 항목이 빠졌는지 확인하고 다시 시도하세요."
loading_label : "로딩 중..."
search_label_text :
search_placeholder_text : "검색어를 입력하세요."
search_algolia_no_results :
results_found : "개 결과 발견"
back_to_top : "맨 위로 이동"
ko-KR:
<<: *DEFAULT_KO
# Russian / Русский
# -----------------
ru: &DEFAULT_RU
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Страница"
pagination_previous : "Предыдущая"
pagination_next : "Следующая"
breadcrumb_home_label : "Главная"
breadcrumb_separator : "/"
menu_label : "Выпадающее меню"
search_label :
toc_label : "Содержание"
ext_link_label : "Прямая ссылка"
less_than : "менее"
minute_read : "мин на чтение"
share_on_label : "Поделиться"
meta_label :
tags_label : "Метки:"
categories_label : "Разделы:"
date_label : "Дата изменения:"
comments_label : "Оставить комментарий"
comments_title : "Комментарии"
more_label : "Читать далее"
related_label : "Вам также может понравиться"
follow_label : "Связаться со мной:"
feed_label : "RSS-лента"
powered_by : "Сайт работает на"
website_label : "Сайт"
email_label : "Электронная почта"
recent_posts : "Свежие записи"
undefined_wpm : "Не определён параметр words_per_minute в _config.yml"
comment_form_info : "Ваш адрес электронной почты не будет опубликован. Обязательные поля помечены"
comment_form_comment_label : "Комментарий"
comment_form_md_info : "Поддерживается синтаксис Markdown."
comment_form_name_label : "Имя"
comment_form_email_label : "Электронная почта"
comment_form_website_label : "Ссылка на сайт (необязательно)"
comment_btn_submit : "Оставить комментарий"
comment_btn_submitted : "Отправлено"
comment_success_msg : "Спасибо за Ваш комментарий! Он будет опубликован на сайте после проверки."
comment_error_msg : "К сожалению, произошла ошибка с отправкой комментария. Пожалуйста, убедитесь, что все обязательные поля заполнены и попытайтесь снова."
loading_label : "Отправка..."
search_label_text :
search_placeholder_text : "Введите поисковый запрос..."
search_algolia_no_results :
results_found : "Найдено"
ru-RU:
<<: *DEFAULT_RU
# Lithuanian / Lietuviškai
# ------------------------
lt: &DEFAULT_LT
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Puslapis"
pagination_previous : "Ankstesnis"
pagination_next : "Sekantis"
breadcrumb_home_label : "Pagrindinis"
breadcrumb_separator : "/"
menu_label : "Meniu rodymas"
search_label :
toc_label : "Turinys"
ext_link_label : "Tiesioginė nuoroda"
less_than : "mažiau nei"
minute_read : "min. skaitymo"
share_on_label : "Pasidalinti"
meta_label :
tags_label : "Žymės:"
categories_label : "Kategorijos:"
date_label : "Atnaujinta:"
comments_label : "Palikti komentarą"
comments_title : "Komentaras"
more_label : "Skaityti daugiau"
related_label : "Taip pat turėtų patikti"
follow_label : "Sekti:"
feed_label : "Šaltinis"
powered_by : "Sukurta su"
website_label : "Tinklapis"
email_label : "El. paštas"
recent_posts : "Naujausi įrašai"
undefined_wpm : "Nedeklaruotas parametras words_per_minute faile _config.yml"
comment_form_info : "El. pašto adresas nebus viešinamas. Būtini laukai pažymėti"
comment_form_comment_label : "Komentaras"
comment_form_md_info : "Markdown palaikomas."
comment_form_name_label : "Vardas"
comment_form_email_label : "El. paštas"
comment_form_website_label : "Tinklapis (nebūtina)"
comment_btn_submit : "Komentuoti"
comment_btn_submitted : "Įrašytas"
comment_success_msg : "Ačiū už komentarą! Jis bus parodytas kai bus patvirtintas."
comment_error_msg : "Atleiskite, įvyko netikėta klaida įrašant komentarą. Pasitikrinkite ar užpildėte visus būtinus laukus ir pamėginkite dar kartą."
loading_label : "Kraunama..."
search_label_text :
search_algolia_no_results :
lt-LT:
<<: *DEFAULT_LT
# Greek
# -----
gr: &DEFAULT_GR
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Σελίδα"
pagination_previous : "Προηγούμενo"
pagination_next : "Επόμενo"
breadcrumb_home_label : "Αρχική"
breadcrumb_separator : "/"
menu_label : "Μενού"
search_label :
toc_label : "Περιεχόμενα"
ext_link_label : "Εξωτερικός Σύνδεσμος"
less_than : "Λιγότερο από"
minute_read : "λεπτά ανάγνωσης"
share_on_label : "Μοιραστείτε το"
meta_label :
tags_label : "Ετικέτες:"
categories_label : "Κατηγορίες:"
date_label : "Ενημερώθηκε:"
comments_label : "Αφήστε ένα σχόλιο"
comments_title : "Σχόλια"
more_label : "Διάβαστε περισσότερα"
related_label : "Σχετικές αναρτήσεις"
follow_label : "Ακολουθήστε:"
feed_label : "RSS Feed"
powered_by : "Δημιουργήθηκε με"
website_label : "Ιστοσελίδα"
email_label : "Email"
recent_posts : "Τελευταίες αναρτήσεις"
undefined_wpm : "Δεν έχει οριστεί η παράμετρος words_per_minute στο αρχείο _config.yml"
comment_form_info : "Η διεύθυνση email σας δεν θα δημοσιευθεί. Τα απαιτούμενα πεδία εμφανίζονται με αστερίσκο"
comment_form_comment_label : "Σχόλιο"
comment_form_md_info : "Το πεδίο υποστηρίζει Markdown."
comment_form_name_label : "Όνομα"
comment_form_email_label : "Διεύθυνση email"
comment_form_website_label : "Ιστοσελίδα (προαιρετικό)"
comment_btn_submit : "Υπόβαλε ένα σχόλιο"
comment_btn_submitted : "Έχει υποβληθεί"
comment_success_msg : "Ευχαριστούμε για το σχόλιό σας! Θα εμφανιστεί στην ιστοσελίδα αφού εγκριθεί."
comment_error_msg : "Λυπούμαστε, παρουσιάστηκε σφάλμα με την υποβολή σας. Παρακαλούμε βεβαιωθείτε ότι έχετε όλα τα απαιτούμενα πεδία συμπληρωμένα και δοκιμάστε ξανά."
loading_label : "Φόρτωση..."
search_label_text :
search_placeholder_text : "Εισάγετε όρο αναζήτησης..."
search_algolia_no_results :
results_found : "Αποτελέσματα"
gr-GR:
<<: *DEFAULT_GR
# Swedish
# -------
sv: &DEFAULT_SV
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Sidan"
pagination_previous : "Föregående"
pagination_next : "Nästa"
breadcrumb_home_label : "Hem"
breadcrumb_separator : "/"
menu_label : "Växla menyläge"
search_label : "Växla sökläge"
toc_label : "På denna sida"
ext_link_label : "Direkt länk"
less_than : "mindre än"
minute_read : "minut läsning"
share_on_label : "Dela på"
meta_label :
tags_label : "Taggar:"
categories_label : "Kategorier:"
date_label : "Uppdaterades:"
comments_label : "Lämna en kommentar"
comments_title : "Kommentarer"
more_label : "Lär dig mer"
related_label : "Du kanske vill även läsa:"
follow_label : "Följ:"
feed_label : "Flöde"
powered_by : "Framställd med"
website_label : "Webbsida"
email_label : "E-post"
recent_posts : "Senaste inlägg"
undefined_wpm : "Odefinerade parametrar words_per_minute i _config.yml"
comment_form_info : "Din e-post adress kommer inte att publiceras. Obligatoriska fält är markerade"
comment_form_comment_label : "Kommentar"
comment_form_md_info : "Stöd för Markdown finns."
comment_form_name_label : "Namn"
comment_form_email_label : "E-post adress"
comment_form_website_label : "Webdsida (valfritt)"
comment_btn_submit : "Skicka en kommentar"
comment_btn_submitted : "Kommentaren har tagits emot"
comment_success_msg : "Tack för din kommentar! Den kommer att visas på sidan så fort den har godkännts."
comment_error_msg : "Tyvärr det har blivit något fel i ett av fälten, se till att du fyllt i alla obligatoriska fält och försök igen."
loading_label : "Laddar..."
search_label_text :
search_placeholder_text : "Fyll i sökterm..."
search_algolia_no_results :
results_found : "Resultat funna"
back_to_top : "Tillbaka till toppen"
sv-SE:
<<: *DEFAULT_SV
sv-FI:
<<: *DEFAULT_SV
# Dutch
# -----
nl: &DEFAULT_NL
skip_links :
skip_primary_nav :
skip_content :
skip_footer :
page : "Pagina"
pagination_previous : "Vorige"
pagination_next : "Volgende"
breadcrumb_home_label : "Home"
breadcrumb_separator : "/"
menu_label : "Wissel Menu"
search_label :
toc_label : "Op deze pagina"
ext_link_label : "Directe Link"
less_than : "minder dan"
minute_read : "minuut gelezen"
share_on_label : "Deel op"
meta_label :
tags_label : "Labels:"
categories_label : "Categorieën:"
date_label : "Bijgewerkt:"
comments_label : "Laat een reactie achter"
comments_title : "Commentaren"
more_label : "Meer informatie"
related_label : "Bekijk ook eens"
follow_label : "Volg:"
feed_label : "Feed"
powered_by : "Aangedreven door"
website_label : "Website"
email_label : "Email"
recent_posts : "Recente berichten"
undefined_wpm : "Niet gedefinieerde parameter words_per_minute bij _config.yml"
comment_form_info : "Uw e-mailadres wordt niet gepubliceerd. Verplichte velden zijn gemarkeerd"
comment_form_comment_label : "Commentaar"
comment_form_md_info : "Markdown wordt ondersteund."
comment_form_name_label : "Naam"
comment_form_email_label : "E-mailadres"
comment_form_website_label : "Website (optioneel)"
comment_btn_submit : "Commentaar toevoegen"
comment_btn_submitted : "Toegevoegd"
comment_success_msg : "Bedankt voor uw reactie! Het zal op de site worden weergegeven zodra het is goedgekeurd."
comment_error_msg : "Sorry, er is een fout opgetreden bij uw inzending. Zorg ervoor dat alle vereiste velden zijn voltooid en probeer het opnieuw."
loading_label : "Laden..."
search_label_text : "Geef uw zoekterm in..."
search_placeholder_text : "Geef uw zoekterm in..."
search_algolia_no_results :
results_found : "Resultaat gevonden"
back_to_top : "Terug naar boven"
nl-BE:
<<: *DEFAULT_NL
nl-NL:
<<: *DEFAULT_NL
# Indonesian
gitextract__97g9qfe/
├── .editorconfig
├── .gitattributes
├── .github/
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ └── documentation.yml
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows/
│ ├── bad-pr.yml
│ └── build.yml
├── .gitignore
├── CHANGELOG.md
├── Gemfile
├── LICENSE
├── README.md
├── Rakefile
├── _config.yml
├── _data/
│ ├── navigation.yml
│ └── ui-text.yml
├── _includes/
│ ├── after-content.html
│ ├── analytics-providers/
│ │ ├── custom.html
│ │ ├── google-gtag.html
│ │ ├── google-universal.html
│ │ ├── google.html
│ │ └── swetrix.html
│ ├── analytics.html
│ ├── archive-single.html
│ ├── author-profile-custom-links.html
│ ├── author-profile.html
│ ├── before-related.html
│ ├── breadcrumbs.html
│ ├── category-list.html
│ ├── comment.html
│ ├── comments-providers/
│ │ ├── custom.html
│ │ ├── custom_scripts.html
│ │ ├── discourse.html
│ │ ├── disqus.html
│ │ ├── facebook.html
│ │ ├── giscus.html
│ │ ├── scripts.html
│ │ ├── staticman.html
│ │ ├── staticman_v2.html
│ │ └── utterances.html
│ ├── comments.html
│ ├── copyright.html
│ ├── copyright.js
│ ├── documents-collection.html
│ ├── feature_row
│ ├── figure
│ ├── footer/
│ │ └── custom.html
│ ├── footer.html
│ ├── gallery
│ ├── group-by-array
│ ├── head/
│ │ └── custom.html
│ ├── head.html
│ ├── masthead.html
│ ├── nav_list
│ ├── page__date.html
│ ├── page__hero.html
│ ├── page__hero_video.html
│ ├── page__meta.html
│ ├── page__related.html
│ ├── page__taxonomy.html
│ ├── paginator-v1.html
│ ├── paginator-v2.html
│ ├── paginator.html
│ ├── post_pagination.html
│ ├── posts-category.html
│ ├── posts-tag.html
│ ├── posts-taxonomy.html
│ ├── schema.html
│ ├── scripts.html
│ ├── search/
│ │ ├── algolia-search-scripts.html
│ │ ├── google-search-scripts.html
│ │ ├── lunr-search-scripts.html
│ │ └── search_form.html
│ ├── seo.html
│ ├── sidebar-custom.html
│ ├── sidebar.html
│ ├── skip-links.html
│ ├── social-share.html
│ ├── tag-list.html
│ ├── toc
│ ├── toc.html
│ └── video
├── _layouts/
│ ├── archive-taxonomy.html
│ ├── archive.html
│ ├── categories.html
│ ├── category.html
│ ├── collection.html
│ ├── compress.html
│ ├── default.html
│ ├── home.html
│ ├── posts.html
│ ├── search.html
│ ├── single.html
│ ├── splash.html
│ ├── tag.html
│ └── tags.html
├── _sass/
│ ├── minimal-mistakes/
│ │ ├── _animations.scss
│ │ ├── _archive.scss
│ │ ├── _base.scss
│ │ ├── _buttons.scss
│ │ ├── _copyright.scss
│ │ ├── _footer.scss
│ │ ├── _forms.scss
│ │ ├── _masthead.scss
│ │ ├── _mixins.scss
│ │ ├── _navigation.scss
│ │ ├── _notices.scss
│ │ ├── _page.scss
│ │ ├── _print.scss
│ │ ├── _reset.scss
│ │ ├── _search.scss
│ │ ├── _sidebar.scss
│ │ ├── _syntax.scss
│ │ ├── _tables.scss
│ │ ├── _utilities.scss
│ │ ├── _variables.scss
│ │ ├── skins/
│ │ │ ├── _air.scss
│ │ │ ├── _aqua.scss
│ │ │ ├── _catppuccin_latte.scss
│ │ │ ├── _catppuccin_mocha.scss
│ │ │ ├── _contrast.scss
│ │ │ ├── _dark.scss
│ │ │ ├── _default.scss
│ │ │ ├── _dirt.scss
│ │ │ ├── _mint.scss
│ │ │ ├── _neon.scss
│ │ │ ├── _plum.scss
│ │ │ └── _sunrise.scss
│ │ └── vendor/
│ │ ├── breakpoint/
│ │ │ ├── _breakpoint.scss
│ │ │ ├── _context.scss
│ │ │ ├── _helpers.scss
│ │ │ ├── _legacy-settings.scss
│ │ │ ├── _no-query.scss
│ │ │ ├── _parsers.scss
│ │ │ ├── _respond-to.scss
│ │ │ ├── _settings.scss
│ │ │ └── parsers/
│ │ │ ├── _double.scss
│ │ │ ├── _query.scss
│ │ │ ├── _resolution.scss
│ │ │ ├── _single.scss
│ │ │ ├── _triple.scss
│ │ │ ├── double/
│ │ │ │ ├── _default-pair.scss
│ │ │ │ ├── _default.scss
│ │ │ │ └── _double-string.scss
│ │ │ ├── resolution/
│ │ │ │ └── _resolution.scss
│ │ │ ├── single/
│ │ │ │ └── _default.scss
│ │ │ └── triple/
│ │ │ └── _default.scss
│ │ ├── magnific-popup/
│ │ │ ├── _magnific-popup.scss
│ │ │ └── _settings.scss
│ │ └── susy/
│ │ ├── _su.scss
│ │ ├── _susy-prefix.scss
│ │ ├── _susy.scss
│ │ ├── plugins/
│ │ │ ├── _svg-grid.scss
│ │ │ └── svg-grid/
│ │ │ ├── _prefix.scss
│ │ │ ├── _svg-api.scss
│ │ │ ├── _svg-grid-math.scss
│ │ │ ├── _svg-settings.scss
│ │ │ ├── _svg-unprefix.scss
│ │ │ └── _svg-utilities.scss
│ │ └── susy/
│ │ ├── _api.scss
│ │ ├── _normalize.scss
│ │ ├── _parse.scss
│ │ ├── _settings.scss
│ │ ├── _su-math.scss
│ │ ├── _su-validate.scss
│ │ ├── _syntax-helpers.scss
│ │ ├── _unprefix.scss
│ │ └── _utilities.scss
│ └── minimal-mistakes.scss
├── assets/
│ ├── css/
│ │ └── main.scss
│ └── js/
│ ├── _main.js
│ ├── lunr/
│ │ ├── lunr-en.js
│ │ ├── lunr-gr.js
│ │ ├── lunr-store.js
│ │ └── lunr.js
│ ├── plugins/
│ │ ├── gumshoe.js
│ │ ├── jquery.ba-throttle-debounce.js
│ │ ├── jquery.fitvids.js
│ │ ├── jquery.greedy-navigation.js
│ │ ├── jquery.magnific-popup.js
│ │ └── smooth-scroll.js
│ └── vendor/
│ └── jquery/
│ └── jquery-3.6.0.js
├── docs/
│ ├── Gemfile
│ ├── Rakefile
│ ├── _config.dev.yml
│ ├── _config.yml
│ ├── _data/
│ │ ├── authors.yml
│ │ ├── comments/
│ │ │ ├── chocolate-chip-cookies/
│ │ │ │ ├── comment-1473870213530.yml
│ │ │ │ ├── comment-1478213467992.yml
│ │ │ │ ├── comment-1500181304581.yml
│ │ │ │ └── comment-1500214855350.yml
│ │ │ ├── gemified-theme-beta/
│ │ │ │ ├── comment-1479508047505.yml
│ │ │ │ ├── comment-1480591890264.yml
│ │ │ │ ├── comment-1482532165381.yml
│ │ │ │ ├── comment-1483456786593.yml
│ │ │ │ ├── comment-1483457152038.yml
│ │ │ │ └── comment-1519412839827.yml
│ │ │ ├── layout-comments/
│ │ │ │ ├── comment-1470944006665.yml
│ │ │ │ ├── comment-1470944162041.yml
│ │ │ │ ├── comment-1472308473018.yml
│ │ │ │ ├── comment-1514406795156.yml
│ │ │ │ ├── comment-1514407115153.yml
│ │ │ │ └── comment-1538482988032.yml
│ │ │ ├── layout-header-image-horizontal/
│ │ │ │ ├── comment-1483124729757.yml
│ │ │ │ └── comment-1483128389943.yml
│ │ │ ├── layout-header-image-text-readability/
│ │ │ │ ├── comment-1474306861206.yml
│ │ │ │ ├── comment-1479253931238.yml
│ │ │ │ └── comment-1479265677846.yml
│ │ │ ├── layout-header-overlay-image/
│ │ │ │ ├── comment-1512840683260.yml
│ │ │ │ ├── comment-1513110608614.yml
│ │ │ │ ├── comment-1513111329875.yml
│ │ │ │ └── comment-1513111563922.yml
│ │ │ ├── layout-related-posts/
│ │ │ │ ├── comment-1500183131535.yml
│ │ │ │ └── comment-1500214974083.yml
│ │ │ ├── layout-sidebar-custom/
│ │ │ │ ├── comment-1519247076880.yml
│ │ │ │ ├── comment-1519247290410.yml
│ │ │ │ └── comment-1520748170396.yml
│ │ │ ├── layout-sidebar-nav-list/
│ │ │ │ ├── comment-1492811460488.yml
│ │ │ │ └── comment-1492812977693.yml
│ │ │ ├── layout-table-of-contents-post/
│ │ │ │ ├── comment-1512118683486.yml
│ │ │ │ ├── comment-1520683848241.yml
│ │ │ │ ├── comment-1527082094887.yml
│ │ │ │ ├── comment-1527500055863.yml
│ │ │ │ ├── comment-1527690060032.yml
│ │ │ │ ├── comment-1527690281769.yml
│ │ │ │ └── comment-1540422628114.yml
│ │ │ ├── markup-image-alignment/
│ │ │ │ └── comment-1534823211504.yml
│ │ │ ├── markup-more-images/
│ │ │ │ ├── comment-1472040323579.yml
│ │ │ │ └── comment-1472146638519.yml
│ │ │ ├── markup-syntax-highlighting/
│ │ │ │ ├── comment-1470969665387.yml
│ │ │ │ ├── comment-1478928407894.yml
│ │ │ │ ├── comment-1487758246637.yml
│ │ │ │ ├── comment-1505403032256.yml
│ │ │ │ ├── comment-1505403241808.yml
│ │ │ │ └── comment-1514836962551.yml
│ │ │ ├── post-future-date/
│ │ │ │ ├── comment-1472064560364.yml
│ │ │ │ └── comment-1472786137736.yml
│ │ │ ├── post-gallery/
│ │ │ │ ├── comment-1500055247314.yml
│ │ │ │ └── comment-1500056210776.yml
│ │ │ ├── post-modified/
│ │ │ │ ├── comment-1497284119888.yml
│ │ │ │ ├── comment-1497284892766.yml
│ │ │ │ └── comment-1520673777110.yml
│ │ │ ├── post-video-youtube/
│ │ │ │ ├── comment-1506623182288.yml
│ │ │ │ ├── comment-1506623710918.yml
│ │ │ │ └── comment-1506632190623.yml
│ │ │ └── welcome-to-jekyll/
│ │ │ ├── comment-1470942205700.yml
│ │ │ ├── comment-1470942247755.yml
│ │ │ ├── comment-1470942265819.yml
│ │ │ ├── comment-1470942493518.yml
│ │ │ ├── comment-1471823346931.yml
│ │ │ ├── comment-1471834988411.yml
│ │ │ ├── comment-1472786599470.yml
│ │ │ ├── comment-1474328950155.yml
│ │ │ ├── comment-1500505983331.yml
│ │ │ ├── comment-1507141538771.yml
│ │ │ ├── comment-1529792272424.yml
│ │ │ └── comment-1529794012288.yml
│ │ ├── navigation.yml
│ │ └── theme.yml
│ ├── _docs/
│ │ ├── 01-quick-start-guide.md
│ │ ├── 02-structure.md
│ │ ├── 03-installation.md
│ │ ├── 04-upgrading.md
│ │ ├── 05-configuration.md
│ │ ├── 06-overriding-theme-defaults.md
│ │ ├── 07-navigation.md
│ │ ├── 08-ui-text.md
│ │ ├── 09-authors.md
│ │ ├── 10-layouts.md
│ │ ├── 11-posts.md
│ │ ├── 12-pages.md
│ │ ├── 13-collections.md
│ │ ├── 14-helpers.md
│ │ ├── 15-utility-classes.md
│ │ ├── 16-stylesheets.md
│ │ ├── 17-javascript.md
│ │ ├── 18-history.md
│ │ ├── 19-contributing.md
│ │ ├── 20-docs-2-2.md
│ │ ├── 21-license.md
│ │ └── 22-faq.md
│ ├── _drafts/
│ │ └── post-draft.md
│ ├── _includes/
│ │ ├── after-content.html
│ │ ├── before-related.html
│ │ └── comments-providers/
│ │ └── scripts.html
│ ├── _pages/
│ │ ├── 404.md
│ │ ├── about.md
│ │ ├── archive-layout-with-content.md
│ │ ├── category-archive.md
│ │ ├── collection-archive.html
│ │ ├── edge-case.md
│ │ ├── home.md
│ │ ├── lorem-ipsum.md
│ │ ├── markup.md
│ │ ├── page-a.md
│ │ ├── page-archive.html
│ │ ├── page-b.md
│ │ ├── pets.md
│ │ ├── portfolio-archive.md
│ │ ├── post-archive-feature-rows.html
│ │ ├── recipes-archive.md
│ │ ├── sample-page.md
│ │ ├── sitemap.md
│ │ ├── splash-page.md
│ │ ├── tag-archive.md
│ │ ├── terms.md
│ │ └── year-archive.md
│ ├── _pets/
│ │ ├── lhasa-apso.md
│ │ └── tabby.md
│ ├── _portfolio/
│ │ ├── baz-boom-identity.md
│ │ ├── fizz-bang-identity.md
│ │ ├── foo-bar-website.md
│ │ └── ginger-gulp-identity.md
│ ├── _posts/
│ │ ├── 2009-05-15-edge-case-nested-and-mixed-lists.md
│ │ ├── 2009-06-01-edge-case-many-tags.md
│ │ ├── 2009-07-02-edge-case-many-categories.md
│ │ ├── 2009-08-06-edge-case-no-body-content.md
│ │ ├── 2009-09-05-edge-case-no-yaml-title.md
│ │ ├── 2009-10-05-edge-case-multiline-excerpt.md
│ │ ├── 2009-10-05-edge-case-title-should-not-overflow-the-content-area.md
│ │ ├── 2009-10-05-edge-case-very-long-title.md
│ │ ├── 2009-10-06-edge-case-broken-highlighting.md
│ │ ├── 2010-01-07-post-modified.md
│ │ ├── 2010-01-07-post-standard.md
│ │ ├── 2010-01-08-post-chat.md
│ │ ├── 2010-02-05-post-notice.md
│ │ ├── 2010-02-05-post-quote.md
│ │ ├── 2010-03-07-post-link.md
│ │ ├── 2010-06-02-post-video-youtube.md
│ │ ├── 2010-08-05-post-header-image-og-override.md
│ │ ├── 2010-08-05-post-header-overlay-image-og-override.md
│ │ ├── 2010-08-05-post-image-linked.md
│ │ ├── 2010-08-05-post-image-standard.md
│ │ ├── 2010-08-05-post-teaser-image-og-override.md
│ │ ├── 2010-08-06-post-image-linked-caption.md
│ │ ├── 2010-08-07-post-image-caption.md
│ │ ├── 2010-09-09-post-gallery.md
│ │ ├── 2010-09-10-post-twitter-embeds.md
│ │ ├── 2010-10-25-post-future-date.md
│ │ ├── 2012-01-02-layout-comments-disabled.md
│ │ ├── 2012-01-02-layout-comments.md
│ │ ├── 2012-01-02-layout-post-date-disabled.md
│ │ ├── 2012-01-02-layout-post-date.md
│ │ ├── 2012-01-02-layout-read-time-disabled.md
│ │ ├── 2012-01-02-layout-read-time.md
│ │ ├── 2012-01-02-layout-related-posts-disabled.md
│ │ ├── 2012-01-02-layout-related-posts.md
│ │ ├── 2012-01-02-layout-sharing-disabled.md
│ │ ├── 2012-01-02-layout-sharing.md
│ │ ├── 2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md
│ │ ├── 2012-01-03-layout-table-of-contents-include-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-indent-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-post.md
│ │ ├── 2012-01-03-layout-table-of-contents-sticky.md
│ │ ├── 2012-03-14-layout-code-excerpt-generated.md
│ │ ├── 2012-03-14-layout-excerpt-defined.md
│ │ ├── 2012-03-14-layout-excerpt-generated.md
│ │ ├── 2012-03-15-layout-author-override.md
│ │ ├── 2012-03-15-layout-author-sidebar-disabled.md
│ │ ├── 2012-03-15-layout-header-image-external.md
│ │ ├── 2012-03-15-layout-header-image-horizontal.md
│ │ ├── 2012-03-15-layout-header-image-text-readability.md
│ │ ├── 2012-03-15-layout-header-image-vertical.md
│ │ ├── 2012-03-15-layout-header-overlay-color.md
│ │ ├── 2012-03-15-layout-header-overlay-image-tagline.md
│ │ ├── 2012-03-15-layout-header-overlay-image.md
│ │ ├── 2012-03-15-layout-more-tag.md
│ │ ├── 2012-03-15-layout-sidebar-custom.md
│ │ ├── 2012-03-15-layout-sidebar-nav-list.md
│ │ ├── 2012-05-22-markup-text-readability-wide-page.md
│ │ ├── 2012-05-22-markup-text-readability.md
│ │ ├── 2013-01-05-markup-title-with-markup.md
│ │ ├── 2013-01-05-markup-title-with-special-characters.md
│ │ ├── 2013-01-09-markup-text-alignment.md
│ │ ├── 2013-01-10-markup-image-alignment.md
│ │ ├── 2013-01-11-markup-html-tags-and-formatting.md
│ │ ├── 2013-05-22-markup-more-images.md
│ │ ├── 2013-08-16-markup-syntax-highlighting.md
│ │ ├── 2016-02-24-welcome-to-jekyll.md
│ │ ├── 2016-09-21-gemified-theme-alpha.md
│ │ ├── 2016-10-06-gemified-theme-beta.md
│ │ ├── 2017-01-23-layout-header-video.md
│ │ └── 2017-11-28-post-exclude-search.md
│ ├── _recipes/
│ │ ├── chocolate-chip-cookies.md
│ │ ├── oatmeal-cookies.md
│ │ └── peanut-butter-cookies.md
│ └── assets/
│ └── images/
│ ├── browserconfig.xml
│ └── manifest.json
├── index.html
├── minimal-mistakes-jekyll.gemspec
├── package.json
├── staticman.yml
└── test/
├── Gemfile
├── _config.yml
├── _data/
│ ├── authors.yml
│ └── navigation.yml
├── _pages/
│ ├── 404.md
│ ├── archive-layout-with-content.md
│ ├── category-archive-grid.md
│ ├── category-archive.md
│ ├── collection-archive-grid.html
│ ├── collection-archive.html
│ ├── edge-case-grid.md
│ ├── edge-case.md
│ ├── lorem-ipsum.md
│ ├── markup-grid.md
│ ├── markup.md
│ ├── page-a.md
│ ├── page-archive-grid.html
│ ├── page-archive.html
│ ├── page-b.md
│ ├── portfolio-archive.md
│ ├── post-archive-feature-rows.html
│ ├── recipes-archive.md
│ ├── sample-page.md
│ ├── search.md
│ ├── sitemap.md
│ ├── splash-page.md
│ ├── tag-archive-grid.md
│ ├── tag-archive.md
│ ├── terms.md
│ ├── year-archive-grid.md
│ └── year-archive.md
├── _pets/
│ ├── lhasa-apso.md
│ └── tabby.md
├── _portfolio/
│ ├── baz-boom-identity.md
│ ├── fizz-bang-identity.md
│ ├── foo-bar-website.md
│ └── ginger-gulp-identity.md
├── _posts/
│ ├── 2009-05-15-edge-case-nested-and-mixed-lists.md
│ ├── 2009-06-01-edge-case-many-tags.md
│ ├── 2009-07-02-edge-case-many-categories.md
│ ├── 2009-08-06-edge-case-no-body-content.md
│ ├── 2009-09-05-edge-case-no-yaml-title.md
│ ├── 2009-10-05-edge-case-multiline-excerpt.md
│ ├── 2009-10-05-edge-case-title-should-not-overflow-the-content-area.md
│ ├── 2009-10-05-edge-case-very-long-title.md
│ ├── 2010-01-07-post-modified.md
│ ├── 2010-01-07-post-standard.md
│ ├── 2010-01-08-post-chat.md
│ ├── 2010-02-05-post-notice.md
│ ├── 2010-02-05-post-quote.md
│ ├── 2010-03-07-post-link.md
│ ├── 2010-06-02-post-video-youtube.md
│ ├── 2010-08-05-post-header-image-og-override.md
│ ├── 2010-08-05-post-header-overlay-image-og-override.md
│ ├── 2010-08-05-post-image-linked.md
│ ├── 2010-08-05-post-image-standard.md
│ ├── 2010-08-05-post-teaser-image-og-override.md
│ ├── 2010-08-06-post-image-linked-caption.md
│ ├── 2010-08-07-post-image-caption.md
│ ├── 2010-09-09-post-gallery.md
│ ├── 2010-09-10-post-twitter-embeds.md
│ ├── 2010-10-25-post-future-date.md
│ ├── 2012-01-02-layout-comments-disabled.md
│ ├── 2012-01-02-layout-comments.md
│ ├── 2012-01-02-layout-post-date-disabled.md
│ ├── 2012-01-02-layout-post-date.md
│ ├── 2012-01-02-layout-read-time-disabled.md
│ ├── 2012-01-02-layout-read-time.md
│ ├── 2012-01-02-layout-related-posts-disabled.md
│ ├── 2012-01-02-layout-related-posts.md
│ ├── 2012-01-02-layout-sharing-disabled.md
│ ├── 2012-01-02-layout-sharing.md
│ ├── 2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md
│ ├── 2012-01-03-layout-table-of-contents-include-post.md
│ ├── 2012-01-03-layout-table-of-contents-indent-post.md
│ ├── 2012-01-03-layout-table-of-contents-post.md
│ ├── 2012-01-03-layout-table-of-contents-sticky.md
│ ├── 2012-03-14-layout-code-excerpt-generated.md
│ ├── 2012-03-14-layout-excerpt-defined.md
│ ├── 2012-03-14-layout-excerpt-generated.md
│ ├── 2012-03-15-layout-author-override.md
│ ├── 2012-03-15-layout-author-sidebar-disabled.md
│ ├── 2012-03-15-layout-header-image-external.md
│ ├── 2012-03-15-layout-header-image-horizontal.md
│ ├── 2012-03-15-layout-header-image-text-readability.md
│ ├── 2012-03-15-layout-header-image-vertical.md
│ ├── 2012-03-15-layout-header-overlay-color.md
│ ├── 2012-03-15-layout-header-overlay-image-tagline.md
│ ├── 2012-03-15-layout-header-overlay-image.md
│ ├── 2012-03-15-layout-more-tag.md
│ ├── 2012-03-15-layout-sidebar-custom.md
│ ├── 2012-03-15-layout-sidebar-nav-list.md
│ ├── 2012-05-22-markup-text-readability-wide-page.md
│ ├── 2012-05-22-markup-text-readability.md
│ ├── 2013-01-05-markup-title-with-markup.md
│ ├── 2013-01-05-markup-title-with-special-characters.md
│ ├── 2013-01-09-markup-text-alignment.md
│ ├── 2013-01-10-markup-image-alignment.md
│ ├── 2013-01-11-markup-html-tags-and-formatting.md
│ ├── 2013-05-22-markup-more-images.md
│ ├── 2013-08-16-markup-syntax-highlighting.md
│ ├── 2016-02-24-welcome-to-jekyll.md
│ ├── 2017-01-23-layout-header-video.md
│ └── 2017-11-28-post-exclude-search.md
├── _recipes/
│ ├── chocolate-chip-cookies.md
│ ├── oatmeal-cookies.md
│ └── peanut-butter-cookies.md
└── index.html
SYMBOL INDEX (87 symbols across 4 files)
FILE: assets/js/lunr/lunr-gr.js
function stemWord (line 49) | function stemWord(w) {
FILE: assets/js/plugins/jquery.ba-throttle-debounce.js
function wrapper (line 141) | function wrapper() {
FILE: assets/js/plugins/jquery.greedy-navigation.js
function measureLinks (line 23) | function measureLinks(){
function check (line 57) | function check() {
FILE: assets/js/vendor/jquery/jquery-3.6.0.js
function DOMEval (line 107) | function DOMEval( code, node, doc ) {
function toType (line 137) | function toType( obj ) {
function isArrayLike (line 507) | function isArrayLike( obj ) {
function Sizzle (line 759) | function Sizzle( selector, context, results, seed ) {
function createCache (line 907) | function createCache() {
function markFunction (line 927) | function markFunction( fn ) {
function assert (line 936) | function assert( fn ) {
function addHandle (line 960) | function addHandle( attrs, handler ) {
function siblingCheck (line 975) | function siblingCheck( a, b ) {
function createInputPseudo (line 1001) | function createInputPseudo( type ) {
function createButtonPseudo (line 1012) | function createButtonPseudo( type ) {
function createDisabledPseudo (line 1023) | function createDisabledPseudo( disabled ) {
function createPositionalPseudo (line 1079) | function createPositionalPseudo( fn ) {
function testContext (line 1102) | function testContext( context ) {
function setFilters (line 2313) | function setFilters() {}
function toSelector (line 2387) | function toSelector( tokens ) {
function addCombinator (line 2397) | function addCombinator( matcher, combinator, base ) {
function elementMatcher (line 2464) | function elementMatcher( matchers ) {
function multipleContexts (line 2478) | function multipleContexts( selector, contexts, results ) {
function condense (line 2487) | function condense( unmatched, map, filter, context, xml ) {
function setMatcher (line 2508) | function setMatcher( preFilter, selector, matcher, postFilter, postFinde...
function matcherFromTokens (line 2608) | function matcherFromTokens( tokens ) {
function matcherFromGroupMatchers (line 2671) | function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
function nodeName (line 3029) | function nodeName( elem, name ) {
function winnow (line 3039) | function winnow( elements, qualifier, not ) {
function sibling (line 3334) | function sibling( cur, dir ) {
function createOptions (line 3427) | function createOptions( options ) {
function Identity (line 3652) | function Identity( v ) {
function Thrower (line 3655) | function Thrower( ex ) {
function adoptValue (line 3659) | function adoptValue( value, resolve, reject, noValue ) {
function resolve (line 3752) | function resolve( depth, deferred, handler, special ) {
function completed (line 4117) | function completed() {
function fcamelCase (line 4212) | function fcamelCase( _all, letter ) {
function camelCase (line 4219) | function camelCase( string ) {
function Data (line 4236) | function Data() {
function getData (line 4405) | function getData( data ) {
function dataAttr (line 4430) | function dataAttr( elem, key, data ) {
function adjustCSS (line 4742) | function adjustCSS( elem, prop, valueParts, tween ) {
function getDefaultDisplay (line 4810) | function getDefaultDisplay( elem ) {
function showHide (line 4833) | function showHide( elements, show ) {
function getAll (line 4965) | function getAll( context, tag ) {
function setGlobalEval (line 4990) | function setGlobalEval( elems, refElements ) {
function buildFragment (line 5006) | function buildFragment( elems, context, scripts, selection, ignored ) {
function returnTrue (line 5098) | function returnTrue() {
function returnFalse (line 5102) | function returnFalse() {
function expectSync (line 5112) | function expectSync( elem, type ) {
function safeActiveElement (line 5119) | function safeActiveElement() {
function on (line 5125) | function on( elem, types, selector, data, fn, one ) {
function leverageNative (line 5613) | function leverageNative( el, type, expectSync ) {
function manipulationTarget (line 5962) | function manipulationTarget( elem, content ) {
function disableScript (line 5973) | function disableScript( elem ) {
function restoreScript (line 5977) | function restoreScript( elem ) {
function cloneCopyEvent (line 5987) | function cloneCopyEvent( src, dest ) {
function fixInput (line 6020) | function fixInput( src, dest ) {
function domManip (line 6033) | function domManip( collection, args, callback, ignored ) {
function remove (line 6125) | function remove( elem, selector, keepData ) {
function computeStyleTests (line 6439) | function computeStyleTests() {
function roundPixelMeasures (line 6483) | function roundPixelMeasures( measure ) {
function curCSS (line 6576) | function curCSS( elem, name, computed ) {
function addGetHookIf (line 6629) | function addGetHookIf( conditionFn, hookFn ) {
function vendorPropName (line 6654) | function vendorPropName( name ) {
function finalPropName (line 6669) | function finalPropName( name ) {
function setPositiveNumber (line 6695) | function setPositiveNumber( _elem, value, subtract ) {
function boxModelAdjustment (line 6707) | function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, ...
function getWidthOrHeight (line 6775) | function getWidthOrHeight( elem, dimension, extra ) {
function Tween (line 7151) | function Tween( elem, options, prop, end, easing ) {
function schedule (line 7274) | function schedule() {
function createFxNow (line 7287) | function createFxNow() {
function genFx (line 7295) | function genFx( type, includeWidth ) {
function createTween (line 7315) | function createTween( value, prop, animation ) {
function defaultPrefilter (line 7329) | function defaultPrefilter( elem, props, opts ) {
function propFilter (line 7501) | function propFilter( props, specialEasing ) {
function Animation (line 7538) | function Animation( elem, properties, options ) {
function stripAndCollapse (line 8254) | function stripAndCollapse( value ) {
function getClass (line 8260) | function getClass( elem ) {
function classesToArray (line 8264) | function classesToArray( value ) {
function buildParams (line 8894) | function buildParams( prefix, obj, traditional, add ) {
function addToPrefiltersOrTransports (line 9047) | function addToPrefiltersOrTransports( structure ) {
function inspectPrefiltersOrTransports (line 9081) | function inspectPrefiltersOrTransports( structure, options, originalOpti...
function ajaxExtend (line 9110) | function ajaxExtend( target, src ) {
function ajaxHandleResponses (line 9130) | function ajaxHandleResponses( s, jqXHR, responses ) {
function ajaxConvert (line 9188) | function ajaxConvert( s, response, jqXHR, isSuccess ) {
function done (line 9704) | function done( status, nativeStatusText, responses, headers ) {
Condensed preview — 502 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,968K chars).
[
{
"path": ".editorconfig",
"chars": 208,
"preview": "# editorconfig.org\nroot = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_"
},
{
"path": ".gitattributes",
"chars": 436,
"preview": "assets/fonts/* linguist-vendored\nassets/js/main.min.js linguist-vendored\nassets/js/lunr/* "
},
{
"path": ".github/CONTRIBUTING.md",
"chars": 1281,
"preview": "# Contributing\n\nFound a typo in the documentation or interested in [fixing a bug](https://github.com/mmistakes/minimal-m"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 3429,
"preview": "name: Bug Report\ndescription: There is something wrong with the theme. 99% of the time you should select Support below.\n"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 201,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: Support\n url: https://github.com/mmistakes/minimal-mistakes/disc"
},
{
"path": ".github/ISSUE_TEMPLATE/documentation.yml",
"chars": 573,
"preview": "name: Documentation\ndescription: Found a typo or something that needs clarification?\nbody:\n - type: markdown\n attrib"
},
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"chars": 690,
"preview": "<!--\n Thanks for creating a Pull Request! Before you submit, please make sure\n you've done the following:\n\n - Read th"
},
{
"path": ".github/workflows/bad-pr.yml",
"chars": 1277,
"preview": "name: Cleanup bad PR\n\non:\n pull_request_target:\n types: [opened, reopened]\n\npermissions:\n contents: read\n\njobs:\n c"
},
{
"path": ".github/workflows/build.yml",
"chars": 1074,
"preview": "name: build\n\non:\n push:\n branches:\n - master\n workflow_dispatch: {}\n repository_dispatch: {}\n\njobs:\n build:\n"
},
{
"path": ".gitignore",
"chars": 352,
"preview": "# Vim\n*~\n*.sw[p_]\n\n# IntelliJ IDEA\n*.idea\n\n# Sublime Text\n*.sublime-project\n*.sublime-workspace\n\n# Ruby Gem\n*.gem\n.bundl"
},
{
"path": "CHANGELOG.md",
"chars": 110384,
"preview": "# Changelog\n\n## [4.28.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.28.0)\n\n### Enhancements\n\n- Updated"
},
{
"path": "Gemfile",
"chars": 38,
"preview": "source \"https://rubygems.org\"\ngemspec\n"
},
{
"path": "LICENSE",
"chars": 1101,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2013-2024 Michael Rose and contributors\n\nPermission is hereby granted, free of char"
},
{
"path": "README.md",
"chars": 20600,
"preview": "# [Minimal Mistakes Jekyll theme](https://mmistakes.github.io/minimal-mistakes/)\n\n[\n# -----------------\nen: &DEFAULT_EN\n skip_links :"
},
{
"path": "_includes/after-content.html",
"chars": 0,
"preview": ""
},
{
"path": "_includes/analytics-providers/custom.html",
"chars": 78,
"preview": "<!-- start custom analytics snippet -->\n\n<!-- end custom analytics snippet -->"
},
{
"path": "_includes/analytics-providers/google-gtag.html",
"chars": 444,
"preview": "<!-- Global site tag (gtag.js) - Google Analytics -->\n<script async src=\"https://www.googletagmanager.com/gtag/js?id={{ "
},
{
"path": "_includes/analytics-providers/google-universal.html",
"chars": 340,
"preview": "<script>\n window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;\n ga('create','{{ site.analytics.google.tr"
},
{
"path": "_includes/analytics-providers/google.html",
"chars": 582,
"preview": "<script>\n var _gaq = _gaq || [];\n _gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);\n {% if site."
},
{
"path": "_includes/analytics-providers/swetrix.html",
"chars": 423,
"preview": "<script src=\"https://swetrix.org/swetrix.js\" defer></script>\n<script>\n document.addEventListener(\"DOMContentLoaded\", fu"
},
{
"path": "_includes/analytics.html",
"chars": 541,
"preview": "{% if jekyll.environment == 'production' and site.analytics.provider and page.analytics != false %}\n\n{% case site.analyt"
},
{
"path": "_includes/archive-single.html",
"chars": 1455,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if post.header.teaser %}\n {% capture teaser %}{{ post.he"
},
{
"path": "_includes/author-profile-custom-links.html",
"chars": 230,
"preview": "<!--\n <li>\n <a href=\"http://link-to-whatever-social-network.com/user/\" itemprop=\"sameAs\" rel=\"nofollow noopener nore"
},
{
"path": "_includes/author-profile.html",
"chars": 10045,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign author = page.author | default: page.authors[0] | "
},
{
"path": "_includes/before-related.html",
"chars": 0,
"preview": ""
},
{
"path": "_includes/breadcrumbs.html",
"chars": 1837,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% case site.category_archive.type %}\n {% when \"liquid\" %}\n"
},
{
"path": "_includes/category-list.html",
"chars": 908,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% case site.category_archive.type %}\n {% when \"liquid\" %}\n"
},
{
"path": "_includes/comment.html",
"chars": 1184,
"preview": "<article id=\"comment{{ include.index }}\" class=\"js-comment comment\" itemprop=\"comment\" itemscope itemtype=\"https://schem"
},
{
"path": "_includes/comments-providers/custom.html",
"chars": 76,
"preview": "<!-- start custom comments snippet -->\n\n<!-- end custom comments snippet -->"
},
{
"path": "_includes/comments-providers/custom_scripts.html",
"chars": 76,
"preview": "<!-- start custom comments scripts -->\n\n<!-- end custom comments scripts -->"
},
{
"path": "_includes/comments-providers/discourse.html",
"chars": 855,
"preview": "{% if site.comments.discourse.server %}\n{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | abs"
},
{
"path": "_includes/comments-providers/disqus.html",
"chars": 784,
"preview": "{% if site.comments.disqus.shortname %}\n <script>\n var disqus_config = function () {\n this.page.url = \"{{ page."
},
{
"path": "_includes/comments-providers/facebook.html",
"chars": 426,
"preview": "<div id=\"fb-root\"></div>\n<script>(function(d, s, id) {\n var js, fjs = d.getElementsByTagName(s)[0];\n if (d.getElementB"
},
{
"path": "_includes/comments-providers/giscus.html",
"chars": 1573,
"preview": "<script>\n 'use strict';\n\n (function () {\n var commentContainer = document.querySelector('#giscus-comments');\n\n i"
},
{
"path": "_includes/comments-providers/scripts.html",
"chars": 817,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if site.comments.provider and page.comments %}\n{% case si"
},
{
"path": "_includes/comments-providers/staticman.html",
"chars": 1919,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if site.repository and site.staticman.branch %}\n <script"
},
{
"path": "_includes/comments-providers/staticman_v2.html",
"chars": 1928,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if site.repository and site.comments.staticman.branch %}\n"
},
{
"path": "_includes/comments-providers/utterances.html",
"chars": 786,
"preview": "<script>\n 'use strict';\n\n (function() {\n var commentContainer = document.querySelector('#utterances-comments');\n\n "
},
{
"path": "_includes/comments.html",
"chars": 11609,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<div class=\"page__comments\">\n {% capture comments_label %}{"
},
{
"path": "_includes/copyright.html",
"chars": 309,
"preview": "<!--\n Minimal Mistakes Jekyll Theme 4.28.0 by Michael Rose\n Copyright 2013-2026 Michael Rose - mademistakes.com | @mmi"
},
{
"path": "_includes/copyright.js",
"chars": 313,
"preview": "/*!\n * Minimal Mistakes Jekyll Theme 4.28.0 by Michael Rose\n * Copyright 2013-2026 Michael Rose - mademistakes.com | @mm"
},
{
"path": "_includes/documents-collection.html",
"chars": 482,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign entries = include.entries | default: site[include."
},
{
"path": "_includes/feature_row",
"chars": 1399,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if include.id %}\n {% assign feature_row = page[include.i"
},
{
"path": "_includes/figure",
"chars": 578,
"preview": "<figure class=\"{{ include.class }}\">\n {%- if include.popup -%}<a href=\"{{ include.image_path | relative_url }}\" class=\""
},
{
"path": "_includes/footer/custom.html",
"chars": 74,
"preview": "<!-- start custom footer snippets -->\n\n<!-- end custom footer snippets -->"
},
{
"path": "_includes/footer.html",
"chars": 1715,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% unless site.atom_feed.hide %}\n {% assign show_atom = tru"
},
{
"path": "_includes/gallery",
"chars": 1120,
"preview": "{% if include.id %}\n {% assign gallery = page[include.id] %}\n{% else %}\n {% assign gallery = page.gallery %}\n{% endif "
},
{
"path": "_includes/group-by-array",
"chars": 1158,
"preview": "<!--\n# Jekyll Group-By-Array 0.1.0\n# https://github.com/mushishi78/jekyll-group-by-array\n# © 2015 Max White <mushishi78@"
},
{
"path": "_includes/head/custom.html",
"chars": 136,
"preview": "<!-- start custom head snippets -->\n\n<!-- insert favicons. use https://realfavicongenerator.net/ -->\n\n<!-- end custom he"
},
{
"path": "_includes/head.html",
"chars": 1350,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<meta charset=\"utf-8\">\n\n{% include seo.html locale=locale %}"
},
{
"path": "_includes/masthead.html",
"chars": 1858,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% capture logo_path %}{{ site.logo }}{% endcapture %}\n\n<div"
},
{
"path": "_includes/nav_list",
"chars": 1144,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<nav class=\"nav__list\">\n {% if page.sidebar.title %}<h3 cla"
},
{
"path": "_includes/page__date.html",
"chars": 790,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign date_format = site.date_format | default: \"%B %-d,"
},
{
"path": "_includes/page__hero.html",
"chars": 2987,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% capture overlay_img_path %}{{ page.header.overlay_image |"
},
{
"path": "_includes/page__hero_video.html",
"chars": 117,
"preview": "{% assign video = page.header.video %}\n{% include video id=video.id provider=video.provider danmaku=video.danmaku %}\n"
},
{
"path": "_includes/page__meta.html",
"chars": 1704,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign document = post | default: page %}\n{% if document."
},
{
"path": "_includes/page__related.html",
"chars": 543,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign posts = include.posts | where_exp: \"post\", \"post.h"
},
{
"path": "_includes/page__taxonomy.html",
"chars": 354,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% unless site.show_taxonomy == false %}\n {% if site.tag_ar"
},
{
"path": "_includes/paginator-v1.html",
"chars": 3480,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if paginator.total_pages > 1 %}\n<nav class=\"pagination\" a"
},
{
"path": "_includes/paginator-v2.html",
"chars": 3210,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<nav class=\"pagination\" aria-label=\"Pagination\">\n <ul>\n "
},
{
"path": "_includes/paginator.html",
"chars": 284,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if paginator.total_pages > 1 %}\n {% if site.paginate %}\n"
},
{
"path": "_includes/post_pagination.html",
"chars": 977,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if page.previous or page.next %}\n <nav class=\"pagination"
},
{
"path": "_includes/posts-category.html",
"chars": 249,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign posts = site.categories[include.taxonomy] | where_"
},
{
"path": "_includes/posts-tag.html",
"chars": 243,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign posts = site.tags[include.taxonomy] | where_exp: \""
},
{
"path": "_includes/posts-taxonomy.html",
"chars": 1330,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign items_max = 0 %}\n{% for item in include.taxonomies"
},
{
"path": "_includes/schema.html",
"chars": 622,
"preview": "<script type=\"application/ld+json\">\n{\n \"@context\": \"https://schema.org\",\n {% if site.social.type == \"Organization\" -%}"
},
{
"path": "_includes/scripts.html",
"chars": 1034,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if site.footer_scripts %}\n {% for script in site.footer_"
},
{
"path": "_includes/search/algolia-search-scripts.html",
"chars": 2842,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<script>\n// Including InstantSearch.js library and styling\nc"
},
{
"path": "_includes/search/google-search-scripts.html",
"chars": 893,
"preview": "<script>\n (function () {\n var cx = '{{ site.google.search_engine_id }}';\n var gcse = document.createElement('scri"
},
{
"path": "_includes/search/lunr-search-scripts.html",
"chars": 479,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% assign lang = locale | slice: 0,2 | default: \"en\" %}\n{% c"
},
{
"path": "_includes/search/search_form.html",
"chars": 1431,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<div class=\"search-content__inner-wrap\">\n {%- assign search"
},
{
"path": "_includes/seo.html",
"chars": 6151,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<!-- begin _includes/seo.html -->\n{%- assign title_separator"
},
{
"path": "_includes/sidebar-custom.html",
"chars": 0,
"preview": ""
},
{
"path": "_includes/sidebar.html",
"chars": 880,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% if page.author_profile or layout.author_profile or page.s"
},
{
"path": "_includes/skip-links.html",
"chars": 564,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<nav class=\"skip-links\" aria-label=\"Skip links\">\n <ul>\n "
},
{
"path": "_includes/social-share.html",
"chars": 2084,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<section class=\"page__share\">\n <h4 class=\"page__share-title"
},
{
"path": "_includes/tag-list.html",
"chars": 841,
"preview": "{% assign locale = include.locale | default: site.locale %}\n{% case site.tag_archive.type %}\n {% when \"liquid\" %}\n {"
},
{
"path": "_includes/toc",
"chars": 368,
"preview": "{% assign locale = include.locale | default: site.locale %}\n<aside class=\"sidebar__right\">\n<nav class=\"toc\" markdown=\"1\""
},
{
"path": "_includes/toc.html",
"chars": 9223,
"preview": "{% capture tocWorkspace %}\n {% comment %}\n Copyright (c) 2017 Vladimir \"allejo\" Jimenez\n\n Permission is"
},
{
"path": "_includes/video",
"chars": 983,
"preview": "{% capture video_id %}{{ include.id }}{% endcapture %}\n{% capture video_provider %}{{ include.provider }}{% endcapture %"
},
{
"path": "_layouts/archive-taxonomy.html",
"chars": 959,
"preview": "---\nlayout: default\nauthor_profile: false\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.l"
},
{
"path": "_layouts/archive.html",
"chars": 851,
"preview": "---\nlayout: default\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{% if page.h"
},
{
"path": "_layouts/categories.html",
"chars": 198,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/category.html",
"chars": 334,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/collection.html",
"chars": 392,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/compress.html",
"chars": 4534,
"preview": "---\n# Jekyll layout that compresses HTML\n# v3.1.0\n# http://jch.penibelst.de/\n# © 2014–2015 Anatol Broder\n# MIT License\n-"
},
{
"path": "_layouts/default.html",
"chars": 1175,
"preview": "---\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n<!doctype html>\n{% include c"
},
{
"path": "_layouts/home.html",
"chars": 598,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/posts.html",
"chars": 1186,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/search.html",
"chars": 1684,
"preview": "---\nlayout: default\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{% if page.h"
},
{
"path": "_layouts/single.html",
"chars": 4126,
"preview": "---\nlayout: default\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{% if page.h"
},
{
"path": "_layouts/splash.html",
"chars": 1170,
"preview": "---\nlayout: default\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{% if page.h"
},
{
"path": "_layouts/tag.html",
"chars": 329,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_layouts/tags.html",
"chars": 192,
"preview": "---\nlayout: archive\n---\n{%- assign locale = page.locale | default: layout.locale | default: site.locale %}\n\n{{ content }"
},
{
"path": "_sass/minimal-mistakes/_animations.scss",
"chars": 336,
"preview": "/* ==========================================================================\n ANIMATIONS\n ========================="
},
{
"path": "_sass/minimal-mistakes/_archive.scss",
"chars": 7279,
"preview": "/* ==========================================================================\n ARCHIVE\n ============================"
},
{
"path": "_sass/minimal-mistakes/_base.scss",
"chars": 4584,
"preview": "/* ==========================================================================\n BASE ELEMENTS\n ======================"
},
{
"path": "_sass/minimal-mistakes/_buttons.scss",
"chars": 2074,
"preview": "/* ==========================================================================\n BUTTONS\n ============================"
},
{
"path": "_sass/minimal-mistakes/_copyright.scss",
"chars": 313,
"preview": "/*!\n * Minimal Mistakes Jekyll Theme 4.28.0 by Michael Rose\n * Copyright 2013-2026 Michael Rose - mademistakes.com | @mm"
},
{
"path": "_sass/minimal-mistakes/_footer.scss",
"chars": 1442,
"preview": "/* ==========================================================================\n FOOTER\n ============================="
},
{
"path": "_sass/minimal-mistakes/_forms.scss",
"chars": 5662,
"preview": "/* ==========================================================================\n Forms\n =============================="
},
{
"path": "_sass/minimal-mistakes/_masthead.scss",
"chars": 1593,
"preview": "/* ==========================================================================\n MASTHEAD\n ==========================="
},
{
"path": "_sass/minimal-mistakes/_mixins.scss",
"chars": 2078,
"preview": "/* ==========================================================================\n MIXINS\n ============================="
},
{
"path": "_sass/minimal-mistakes/_navigation.scss",
"chars": 11647,
"preview": "/* ==========================================================================\n NAVIGATION\n ========================="
},
{
"path": "_sass/minimal-mistakes/_notices.scss",
"chars": 2251,
"preview": "/* ==========================================================================\n NOTICE TEXT BLOCKS\n ================="
},
{
"path": "_sass/minimal-mistakes/_page.scss",
"chars": 9848,
"preview": "/* ==========================================================================\n SINGLE PAGE/POST\n ==================="
},
{
"path": "_sass/minimal-mistakes/_print.scss",
"chars": 3453,
"preview": "/* ==========================================================================\n PRINT STYLES\n ======================="
},
{
"path": "_sass/minimal-mistakes/_reset.scss",
"chars": 3606,
"preview": "/* ==========================================================================\n STYLE RESETS\n ======================="
},
{
"path": "_sass/minimal-mistakes/_search.scss",
"chars": 2196,
"preview": "/* ==========================================================================\n SEARCH\n ============================="
},
{
"path": "_sass/minimal-mistakes/_sidebar.scss",
"chars": 6210,
"preview": "/* ==========================================================================\n SIDEBAR\n ============================"
},
{
"path": "_sass/minimal-mistakes/_syntax.scss",
"chars": 4893,
"preview": "/* ==========================================================================\n Syntax highlighting\n ================"
},
{
"path": "_sass/minimal-mistakes/_tables.scss",
"chars": 685,
"preview": "/* ==========================================================================\n TABLES\n ============================="
},
{
"path": "_sass/minimal-mistakes/_utilities.scss",
"chars": 11385,
"preview": "/* ==========================================================================\n UTILITY CLASSES\n ===================="
},
{
"path": "_sass/minimal-mistakes/_variables.scss",
"chars": 7962,
"preview": "/* ==========================================================================\n Variables\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_air.scss",
"chars": 745,
"preview": "/* ==========================================================================\n Air skin\n ==========================="
},
{
"path": "_sass/minimal-mistakes/skins/_aqua.scss",
"chars": 1449,
"preview": "/* ==========================================================================\n Aqua skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_catppuccin_latte.scss",
"chars": 3284,
"preview": "/* ==========================================================================\n Catppuccin Latte skin\n =============="
},
{
"path": "_sass/minimal-mistakes/skins/_catppuccin_mocha.scss",
"chars": 2831,
"preview": "/* ==========================================================================\n Catppuccin Mocha skin\n =============="
},
{
"path": "_sass/minimal-mistakes/skins/_contrast.scss",
"chars": 1380,
"preview": "/* ==========================================================================\n Contrast skin\n ======================"
},
{
"path": "_sass/minimal-mistakes/skins/_dark.scss",
"chars": 1259,
"preview": "/* ==========================================================================\n Dark skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_default.scss",
"chars": 204,
"preview": "/* ==========================================================================\n Default skin\n ======================="
},
{
"path": "_sass/minimal-mistakes/skins/_dirt.scss",
"chars": 1065,
"preview": "/* ==========================================================================\n Dirt skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_mint.scss",
"chars": 777,
"preview": "/* ==========================================================================\n Mint skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_neon.scss",
"chars": 1983,
"preview": "/* ==========================================================================\n Neon skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_plum.scss",
"chars": 2049,
"preview": "/* ==========================================================================\n Plum skin\n =========================="
},
{
"path": "_sass/minimal-mistakes/skins/_sunrise.scss",
"chars": 1737,
"preview": "/* ==========================================================================\n Sunrise skin\n ======================="
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss",
"chars": 2554,
"preview": "//////////////////////////////\n// Default Variables\n//////////////////////////////\n$Breakpoint-Settings: (\n 'default me"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_context.scss",
"chars": 3143,
"preview": "//////////////////////////////\n// Private Breakpoint Variables\n//////////////////////////////\n$private-breakpoint-contex"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss",
"chars": 4311,
"preview": "//////////////////////////////\n// Converts the input value to Base EMs\n//////////////////////////////\n@function breakpoi"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss",
"chars": 2771,
"preview": "@mixin legacy-settings-warning {\n $legacyVars: (\n 'default-media': 'default media',\n 'default-feature': 'default "
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss",
"chars": 340,
"preview": "@function breakpoint-no-query($query) {\n @if type-of($query) == 'list' {\n $keyword: nth($query, 1);\n\n @if type-of"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss",
"chars": 6795,
"preview": "//////////////////////////////\n// Import Parser Pieces\n//////////////////////////////\n@import \"parsers/query\";\n@import \""
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss",
"chars": 2884,
"preview": "////////////////////////\n// Default the Breakpoints variable\n////////////////////////\n$breakpoints: () !default;\n$BREAKP"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/_settings.scss",
"chars": 1868,
"preview": "//////////////////////////////\n// Has Setting\n//////////////////////////////\n@function breakpoint-has($setting) {\n @if "
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss",
"chars": 1081,
"preview": "//////////////////////////////\n// Import Pieces\n//////////////////////////////\n@import \"double/default-pair\";\n@import \"d"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss",
"chars": 3931,
"preview": "@function breakpoint-parse-query($query) {\n // Parse features out of an individual query\n $feature-holder: ();\n $quer"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss",
"chars": 789,
"preview": "@import \"resolution/resolution\";\n\n@function breakpoint-build-resolution($query-print, $query-resolution, $empty-media, $"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss",
"chars": 707,
"preview": "//////////////////////////////\n// Import Pieces\n//////////////////////////////\n@import \"single/default\";\n\n@function brea"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss",
"chars": 757,
"preview": "//////////////////////////////\n// Import Pieces\n//////////////////////////////\n@import \"triple/default\";\n\n@function brea"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss",
"chars": 611,
"preview": "@function breakpoint-parse-default-pair($first, $second) {\n $default: breakpoint-get('default pair');\n $min: '';\n $ma"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss",
"chars": 450,
"preview": "@function breakpoint-parse-double-default($first, $second) {\n $feature: '';\n $value: '';\n\n @if type-of($first) == 'st"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss",
"chars": 568,
"preview": "@function breakpoint-parse-double-string($first, $second) {\n $feature: '';\n $value: '';\n\n // Test to see which is the"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss",
"chars": 1651,
"preview": "@function breakpoint-make-resolutions($resolution) {\n $length: length($resolution);\n\n $output: ();\n\n @if $length == 2"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss",
"chars": 386,
"preview": "@function breakpoint-parse-default($feature) {\n $default: breakpoint-get('default feature');\n\n // Set Context\n $conte"
},
{
"path": "_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss",
"chars": 555,
"preview": "@function breakpoint-parse-triple-default($feature, $first, $second) {\n\n // Sort into min and max\n $min: min($first, $"
},
{
"path": "_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss",
"chars": 13392,
"preview": "/* Magnific Popup CSS */\n\n@import \"settings\";\n\n////////////////////////\n//\n// Contents:\n//\n// 1. Default Settings\n// 2. "
},
{
"path": "_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss",
"chars": 2839,
"preview": "////////////////////////\n// Settings //\n////////////////////////\n\n// overlay\n$mfp-overlay-color: "
},
{
"path": "_sass/minimal-mistakes/vendor/susy/_su.scss",
"chars": 32,
"preview": "// Su\n// ==\n\n@import 'susy/su';\n"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss",
"chars": 260,
"preview": "// Susy (Prefixed)\n// ===============\n\n$susy-version: 3;\n\n@import 'susy/utilities';\n@import 'susy/su-validate';\n@import "
},
{
"path": "_sass/minimal-mistakes/vendor/susy/_susy.scss",
"chars": 93,
"preview": "// Susy (Un-Prefixed)\n// ==================\n\n@import 'susy-prefix';\n@import 'susy/unprefix';\n"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss",
"chars": 107,
"preview": "// SVG Grid Background\n// ===================\n\n@import 'svg-grid/prefix';\n@import 'svg-grid/svg-unprefix';\n"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss",
"chars": 140,
"preview": "// Prefixed SVG Plugin\n// ===================\n\n@import 'svg-settings';\n@import 'svg-utilities';\n@import 'svg-grid-math';"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss",
"chars": 3127,
"preview": "/// Plugin: SVG Grid Image\n/// ======================\n/// @group plugin_svg-grid\n/// @see susy-svg-grid\n\n\n\n/// ## Overvi"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss",
"chars": 1436,
"preview": "// SVG Grid Math\n// =============\n\n\n\n// SVG Column Position\n// -------------------\n/// Determine the proper horizontal p"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss",
"chars": 405,
"preview": "// SVG Settings\n// ============\n\n\n// Susy SVG Defaults\n// =================\n/// This plugin adds the `svg-grid-colors` p"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss",
"chars": 325,
"preview": "// Unprefix Susy SVG Grid\n// ======================\n\n\n\n// SVG Grid\n// --------\n/// Un-prefixed alias for `susy-svg-grid`"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss",
"chars": 3048,
"preview": "// SVG Utilities\n// =============\n\n\n\n// SVG Validate Units\n// ------------------\n/// Make sure a length is supported in "
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_api.scss",
"chars": 10033,
"preview": "/// Susy3 API Functions\n/// ===================\n/// These three functions form the core of Susy's\n/// layout-building gr"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss",
"chars": 7043,
"preview": "/// Syntax Normalization\n/// ====================\n/// Susy is divided into two layers:\n/// \"Su\" provides the core math f"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_parse.scss",
"chars": 4506,
"preview": "/// Shorthand Syntax Parser\n/// =======================\n/// The syntax parser converts [shorthand syntax][short]\n/// int"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_settings.scss",
"chars": 10288,
"preview": "/// Susy3 Configuration\n/// ===================\n/// Susy3 has 4 core settings, in a single settings map.\n/// You'll noti"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss",
"chars": 11489,
"preview": "/// Grid Math Engine\n/// ================\n/// The `su` functions give you direct access to the math layer,\n/// without a"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss",
"chars": 4939,
"preview": "/// Validation\n/// ==========\n/// Each argument to Su has a single canonical syntax.\n/// These validation functions chec"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss",
"chars": 6153,
"preview": "/// Syntax Utilities for Extending Susy\n/// ===================================\n/// There are many steps involved\n/// wh"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss",
"chars": 890,
"preview": "// Unprefix Susy\n// =============\n\n\n// Span\n// ----\n/// Un-prefixed alias for `susy-span`\n/// (available by default)\n///"
},
{
"path": "_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss",
"chars": 3815,
"preview": "// Sass Utilities\n// ==============\n// - Susy Error Output Override [variable]\n// - Susy Error [function]\n\n\n\n// Susy Err"
},
{
"path": "_sass/minimal-mistakes.scss",
"chars": 1091,
"preview": "/* Copyright comment */\n@import \"minimal-mistakes/copyright\";\n\n/* Variables */\n@import \"minimal-mistakes/variables\";\n\n/*"
},
{
"path": "assets/css/main.scss",
"chars": 252,
"preview": "---\n# Only the main Sass file needs front matter (the dashes are enough)\nsearch: false\n---\n\n@charset \"utf-8\";\n\n@import \""
},
{
"path": "assets/js/_main.js",
"chars": 7891,
"preview": "/* ==========================================================================\n jQuery plugin settings and other script"
},
{
"path": "assets/js/lunr/lunr-en.js",
"chars": 2579,
"preview": "---\nlayout: none\n---\n\nvar idx = lunr(function () {\n this.field('title')\n this.field('excerpt')\n this.field('categorie"
},
{
"path": "assets/js/lunr/lunr-gr.js",
"chars": 12738,
"preview": "---\nlayout: none\n---\n\nstep1list = new Array();\nstep1list[\"ΦΑΓΙΑ\"] = \"ΦΑ\";\nstep1list[\"ΦΑΓΙΟΥ\"] = \"ΦΑ\";\nstep1list[\"ΦΑΓΙΩΝ\""
},
{
"path": "assets/js/lunr/lunr-store.js",
"chars": 3044,
"preview": "---\nlayout: none\n---\n\nvar store = [\n {%- for c in site.collections -%}\n {%- if forloop.last -%}\n {%- assign l ="
},
{
"path": "assets/js/lunr/lunr.js",
"chars": 99804,
"preview": "/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\n * Copyright (C) 2020 Oliv"
},
{
"path": "assets/js/plugins/gumshoe.js",
"chars": 11364,
"preview": "/*!\n * gumshoejs v5.1.1\n * A simple, framework-agnostic scrollspy script.\n * (c) 2019 Chris Ferdinandi\n * MIT License\n *"
},
{
"path": "assets/js/plugins/jquery.ba-throttle-debounce.js",
"chars": 10254,
"preview": "/*!\n * jQuery throttle / debounce - v1.1 - 3/7/2010\n * http://benalman.com/projects/jquery-throttle-debounce-plugin/\n * "
},
{
"path": "assets/js/plugins/jquery.fitvids.js",
"chars": 3220,
"preview": "/*jshint browser:true */\n/*!\n* FitVids 1.1\n*\n* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http"
},
{
"path": "assets/js/plugins/jquery.greedy-navigation.js",
"chars": 5215,
"preview": "/*\nGreedyNav.js - https://github.com/lukejacksonn/GreedyNav\nLicensed under the MIT license - http://opensource.org/licen"
},
{
"path": "assets/js/plugins/jquery.magnific-popup.js",
"chars": 48977,
"preview": "/*! Magnific Popup - v1.1.0 - 2016-02-20\n* http://dimsemenov.com/plugins/magnific-popup/\n* Copyright (c) 2016 Dmitry Sem"
},
{
"path": "assets/js/plugins/smooth-scroll.js",
"chars": 19575,
"preview": "/*!\n * smooth-scroll v16.1.2\n * Animate scrolling to anchor links\n * (c) 2020 Chris Ferdinandi\n * MIT License\n * http://"
},
{
"path": "assets/js/vendor/jquery/jquery-3.6.0.js",
"chars": 288580,
"preview": "/*!\n * jQuery JavaScript Library v3.6.0\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * C"
},
{
"path": "docs/Gemfile",
"chars": 415,
"preview": "source \"https://rubygems.org\"\n\ngem \"github-pages\", group: :jekyll_plugins\ngem \"minimal-mistakes-jekyll\", path: \"..\"\ngem "
},
{
"path": "docs/Rakefile",
"chars": 122,
"preview": "task :default => %i[build]\n\ntask :build do\n sh 'jekyll build --profile --trace --config _config.yml,_config.dev.yml'\nen"
},
{
"path": "docs/_config.dev.yml",
"chars": 225,
"preview": "# Develop override settings\n\ntheme: minimal-mistakes-jekyll\nremote_theme: null\nurl: http://localhost:4000\n\nanalytics:\n "
},
{
"path": "docs/_config.yml",
"chars": 9741,
"preview": "# Welcome to Jekyll!\n#\n# This config file is meant for settings that affect your entire site, values\n# which you are exp"
},
{
"path": "docs/_data/authors.yml",
"chars": 859,
"preview": "# Authors\n\nBilly Rick:\n name : \"Billy Rick\"\n bio : \"What do you want, jewels? I am a very extravagant m"
},
{
"path": "docs/_data/comments/chocolate-chip-cookies/comment-1473870213530.yml",
"chars": 208,
"preview": "message: Cooooookies! Yum! (Thanks for this awesome them.. and... recipe..)\nname: Markus\nemail: f6f9be6ae6e174661ea7c87a"
},
{
"path": "docs/_data/comments/chocolate-chip-cookies/comment-1478213467992.yml",
"chars": 190,
"preview": "message: \"DELETE ME\\r\\n\\r\\njust trying out the comment system\"\nname: Donald Duck\nemail: cfedc848417c6ed0ce1eed35e741b26e"
},
{
"path": "docs/_data/comments/chocolate-chip-cookies/comment-1500181304581.yml",
"chars": 296,
"preview": "_id: dcd6d950-69e3-11e7-8901-815fa61174ff\nmessage: >-\n I'm exploring this theme. Apparently replies are not supported o"
},
{
"path": "docs/_data/comments/chocolate-chip-cookies/comment-1500214855350.yml",
"chars": 358,
"preview": "_id: faa63db0-6a31-11e7-8901-815fa61174ff\nmessage: >-\n @Harry - That's correct. See [this issue on\n GitHub](https://gi"
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1479508047505.yml",
"chars": 131,
"preview": "message: wonderful theme!\nname: burner\nemail: 7327e2b38683d37634ada1dfa1d9f6e7\nurl: ''\nhidden: ''\ndate: '2016-11-18T22:2"
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1480591890264.yml",
"chars": 166,
"preview": "_id: b3f80ef0-b7b9-11e6-9b81-0bc3350a75b6\nmessage: Awesome....\nname: Joko\nemail: e173d909aa244a3fbf81908da947ff94\nurl: '"
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1482532165381.yml",
"chars": 193,
"preview": "_id: 4218daa0-c95f-11e6-b347-77ada084d3be\nmessage: Agreed\nname: Bob\nemail: d73914c0f3c7350b9fbc0790e1fc0412\nurl: ''\nhidd"
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1483456786593.yml",
"chars": 634,
"preview": "_id: 0ef265d0-d1c8-11e6-b0a9-efc179b06d97\nmessage: \"Got a little problem here,\\r\\n\\r\\nIf I'm using Github pages, should "
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1483457152038.yml",
"chars": 527,
"preview": "_id: e91c28e0-d1c8-11e6-b0a9-efc179b06d97\nmessage: \"@Specialvict - follow [these instructions](https://mmistakes.github."
},
{
"path": "docs/_data/comments/gemified-theme-beta/comment-1519412839827.yml",
"chars": 167,
"preview": "_id: c4c722a0-18cc-11e8-81e7-ad1d9008e648\nmessage: great theme!\nname: vern\nemail: a6f5c444240028e515acd8e8808cd130\nurl: "
},
{
"path": "docs/_data/comments/layout-comments/comment-1470944006665.yml",
"chars": 250,
"preview": "message: \"\\r\\n\\r\\n“It's hard to be an artist. It's hard to be anything."
}
]
// ... and 302 more files (download for full content)
About this extraction
This page contains the full source code of the mmistakes/minimal-mistakes GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 502 files (1.8 MB), approximately 506.1k tokens, and a symbol index with 87 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.