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 ================================================ ## Summary ## Context ================================================ 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 `

` 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 `` 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 `` 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 `

` 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 Esc. [#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 `` 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 `
` 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. `
my link`). - Add `air`, `contrast`, `dark`, `dirt`, `mint`, and `sunrise` skin color options. [#1208](https://github.com/mmistakes/minimal-mistakes/issues/1208) - Allow scripts in `` and before `` 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 `` and `` 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 `
` 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 `` 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 `` 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 `` 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. `

` 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 ``. - 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)) ![social sharing buttons](https://cloud.githubusercontent.com/assets/1376749/5860522/d9f28a96-a22f-11e4-9b83-940a3a9a766a.png) - 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. ![menu animation](https://camo.githubusercontent.com/3fbd8c1326485f4b1ab32c0005c0fca7660b5d31/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313337363734392f323136343037352f31653366303663322d393465372d313165332d383961612d6436623636376562306564662e676966) ## [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/) [![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/mmistakes/minimal-mistakes/master/LICENSE) [![Jekyll](https://img.shields.io/badge/jekyll-%3E%3D%203.7-blue.svg)](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) ![layout examples](screenshot-layouts.png) ## 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` | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [![air skin](https://mmistakes.github.io/minimal-mistakes/assets/images/air-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/air-skin-archive-large.png) | [![contrast skin](https://mmistakes.github.io/minimal-mistakes/assets/images/contrast-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/contrast-skin-archive-large.png) | [![dark skin](https://mmistakes.github.io/minimal-mistakes/assets/images/dark-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/dark-skin-archive-large.png) | | `dirt` | `mint` | `sunrise` | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [![dirt skin](https://mmistakes.github.io/minimal-mistakes/assets/images/dirt-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/dirt-skin-archive-large.png) | [![mint skin](https://mmistakes.github.io/minimal-mistakes/assets/images/mint-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/mint-skin-archive-large.png) | [![sunrise skin](https://mmistakes.github.io/minimal-mistakes/assets/images/sunrise-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/sunrise-skin-archive-large.png) | | `aqua` | `neon` | `plum` | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [![aqua skin](https://mmistakes.github.io/minimal-mistakes/assets/images/aqua-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/aqua-skin-archive-large.png) | [![neon skin](https://mmistakes.github.io/minimal-mistakes/assets/images/neon-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/neon-skin-archive-large.png) | [![plum skin](https://mmistakes.github.io/minimal-mistakes/assets/images/plum-skin-archive.png)](https://mmistakes.github.io/minimal-mistakes/assets/images/plum-skin-archive-large.png) | | `catppuccin_latte` | `catppuccin_mocha` | | --- | --- | | ![catppuccin_latte skin](./assets/images/catppuccin_latte-skin-archive-large.png) | ![catppuccin_mocha skin](./assets/images/catppuccin_mocha-skin-archive-large.png) | ## 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 `
` 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. **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** - - - ### 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 . 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 "" 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) # - /tags/my-awesome-tag/index.html ~> path: /tags/ # - /categories/my-awesome-category/index.html ~> path: /categories/ # - /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 # ---------- id: &DEFAULT_ID skip_links : skip_primary_nav : "Loncat ke navigasi" skip_content : "Loncat ke konten" skip_footer : "Loncat ke footer" page : "Halaman" pagination_previous : "Sebelumnya" pagination_next : "Selanjutnya" breadcrumb_home_label : "Beranda" breadcrumb_separator : "/" menu_label : "Menu" search_label : "Pencarian" toc_label : "Pada Halaman Ini" ext_link_label : "Link langsung" less_than : "Kurang dari" minute_read : "menit baca" share_on_label : "Bagikan di" meta_label : tags_label : "Label:" categories_label : "Kategori:" date_label : "Diupdate:" comments_label : "Tinggalkan komentar" comments_title : "Komentar" more_label : "Pelajari lagi" related_label : "Anda mungkin suka" follow_label : "Ikuti:" feed_label : "Feed" powered_by : "Didukung oleh" website_label : "Website" email_label : "Email" recent_posts : "Post terbaru" undefined_wpm : "Parameter terdeskripsi words_per_minute di _config.yml" comment_form_info : "Email Anda tidak akan dipublish. Kolom yang diperlukan ditandai dengan tanda " comment_form_comment_label : "Komentar" comment_form_md_info : "Markdown didukung." comment_form_name_label : "Nama" comment_form_email_label : "Alamat email" comment_form_website_label : "Website (opsional)" comment_btn_submit : "Kirim Komentar" comment_btn_submitted : "Telah dikirim" comment_success_msg : "Terimakasih atas komentar Anda! Komentar akan tampil setelah disetujui." comment_error_msg : "Maaf, ada kesalahan pada komentar Anda. Pastikan seluruh kolom sudah dilengkapi dan coba kembali." loading_label : "Sedang memuat..." search_label_text : "Masukkan kata kunci pencarian..." search_placeholder_text : "Masukkan kata kunci pencarian..." search_algolia_no_results : "Tidak ada hasil" results_found : "Hasil pencarian ditemukan" back_to_top : "Kembali ke awal" id-ID: <<: *DEFAULT_ID # Vietnamese # ---------- vi: &DEFAULT_VI skip_links : "Đường dẫn tắt" skip_primary_nav : "Nhảy tới thanh điều hướng" skip_content : "Nhảy tới nội dung" skip_footer : "Nhảy tới chân trang" page : "Trang" pagination_previous : "Trước" pagination_next : "Kế tiếp" breadcrumb_home_label : "Trang chủ" breadcrumb_separator : "/" menu_label : "Menu" search_label : "Tìm kiếm" toc_label : "Mục lục" ext_link_label : "Đường dẫn trực tiếp" less_than : "chỉ cần" minute_read : "phút để đọc" share_on_label : "Chia sẻ tại" meta_label : tags_label : "Thẻ:" categories_label : "Danh mục:" date_label : "Ngày cập nhật:" comments_label : "Để lại bình luận" comments_title : "Bình luận" more_label : "Mở rộng" related_label : "Có thể bạn cũng thích" follow_label : "Theo dõi:" feed_label : "Feed" powered_by : "Xây dựng trên nền tảng" website_label : "Website" email_label : "Email" recent_posts : "Bài viết mới" undefined_wpm : "Chưa định nghĩa thông số words_per_minute tại _config.yml" comment_form_info : "Email của bạn sẽ được giữ bí mật. Các phần bắt buộc được đánh dấu" comment_form_comment_label : "Bình luận" comment_form_md_info : "Hỗ trợ Markdown." comment_form_name_label : "Tên" comment_form_email_label : "Địa chỉ email" comment_form_website_label : "Website (không bắt buộc)" comment_btn_submit : "Gửi bình luận" comment_btn_submitted : "Đã được gửi" comment_success_msg : "Cảm ơn bạn đã bình luận! Bình luận sẽ xuất hiện sau khi được duyệt." comment_error_msg : "Rất tiếc, có lỗi trong việc gửi bình luận. Hãy đảm bảo toàn bộ các phần bắt buộc đã được điền đầy đủ và thử lại." loading_label : "Đang tải..." search_label_text : "Nhập từ khóa cần tìm..." search_placeholder_text : "Nhập từ khóa cần tìm..." search_algolia_no_results : "Không tìm thấy kết quả nào" results_found : "Kết quả tìm được" back_to_top : "Lên đầu trang" vi-VN: <<: *DEFAULT_VI # Danish # ------ da: &DEFAULT_DA skip_links : skip_primary_nav : "Gå til hovedmenuen" skip_content : "Gå til indholdet" skip_footer : "Gå til sidefoden" page : "Side" pagination_previous : "Forrige" pagination_next : "Næste" breadcrumb_home_label : "Forside" breadcrumb_separator : "/" menu_label : "Vis/skjul menu" search_label : "Søgning til/fra" toc_label : "På denne side" ext_link_label : "Direkte link" less_than : "mindre end" minute_read : "minutters læsning" share_on_label : "Del på" meta_label : tags_label : "Nøgleord:" categories_label : "Kategorier:" date_label : "Opdateret:" comments_label : "Skriv en kommentar" comments_title : "Kommentarer" more_label : "Lær mere" related_label : "Måske kan du også lide" follow_label : "Følg:" feed_label : "Feed" powered_by : "Drives af" website_label : "Website" email_label : "E-mail" recent_posts : "Seneste indlæg" undefined_wpm : "Parameteren words_per_minute er ikke defineret i _config.yml" comment_form_info : "Din e-mail bliver ikke offentliggjort. Obligatoriske felter er markeret" comment_form_comment_label : "Kommentar" comment_form_md_info : "Markdown er understøttet." comment_form_name_label : "Navn" comment_form_email_label : "E-mail" comment_form_website_label : "Website (frivillig)" comment_btn_submit : "Send kommentar" comment_btn_submitted : "Sendt" comment_success_msg : "Tak for din kommentar! Den bliver vist på siden, så snart den er godkendt." comment_error_msg : "Desværre skete der en fejl. Prøv igen, mens du sørger for at alle obligatoriske felter er udfyldt." loading_label : "Indlæser..." search_label_text : "Hvad leder du efter..." search_placeholder_text : "Hvad leder du efter..." search_algolia_no_results : "Ingen resultater" results_found : "Resultat(er) fundet" back_to_top : "Tilbage til toppen" da-DK: <<: *DEFAULT_DA # Polish # ------ pl: &DEFAULT_PL skip_links : "Pomiń linki" skip_primary_nav : "Przejdź do nawigacji" skip_content : "Przejdź do treści" skip_footer : "Przejdź do stopki" page : "Strona" pagination_previous : "Poprzednia" pagination_next : "Następna" breadcrumb_home_label : "Strona główna" breadcrumb_separator : "/" menu_label : "Przełącz menu" search_label : "Przełącz wyszukiwanie" toc_label : "Spis treści" ext_link_label : "Link bezpośredni" less_than : "mniej niż" minute_read : "minut(y)" share_on_label : "Udostępnij" meta_label : tags_label : "Tagi:" categories_label : "Kategorie:" date_label : "Ostatnia aktualizacja:" comments_label : "Zostaw komentarz" comments_title : "Komentarze" more_label : "Dowiedz się więcej" related_label : "Także może Ci się spodobać" follow_label : "Śledź:" feed_label : "Feed" powered_by : "Powstało dzięki" website_label : "Strona" email_label : "Email" recent_posts : "Najnowsze wpisy" undefined_wpm : "Parametr words_per_minute nie został zdefiniowany w _config.yml." comment_form_info : "Twój adres email nie będzie udostępiony. Wymagane pola są oznaczone." comment_form_comment_label : "Skomentuj" comment_form_md_info : "Markdown jest wspierany" comment_form_name_label : "Imię" comment_form_email_label : "Adres email" comment_form_website_label : "Strona www (opcjonalna)" comment_btn_submit : "Skomentuj" comment_btn_submitted : "Komentarz dodany" comment_success_msg : "Dziękuję za Twój komentarz! Zostanie dodany po akceptacji." comment_error_msg : "Niestety wystąpił błąd. Proszę upewnij się, że wszystkie wymagane pola zostały wypełnione i spróbuj ponownie." loading_label : "Trwa ładowanie strony..." search_label_text : "Wprowadź kryteria wyszukiwania..." search_placeholder_text : "Wprowadź kryteria wyszukiwania..." search_algolia_no_results : "Brak wyników" results_found : "Znalezione wyniki" back_to_top : "Wróć na górę" pl-PL: <<: *DEFAULT_PL # Japanese # -------- ja: &DEFAULT_JA 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 : "パラメータ 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 : "URL (任意)" 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 : "件" ja-JP: <<: *DEFAULT_JA # Slovak # ----------------- sk: &DEFAULT_SK skip_links : skip_primary_nav : skip_content : skip_footer : page : "Stránka" pagination_previous : "Predošlá" pagination_next : "Ďalšia" breadcrumb_home_label : "Domov" breadcrumb_separator : "/" menu_label : "Menu" search_label : toc_label : "Obsah" ext_link_label : "Priamy odkaz" less_than : "menej ako" minute_read : "minút" share_on_label : "Zdieľaj na" meta_label : tags_label : "Tagy:" categories_label : "Kategórie:" date_label : "Aktualizované:" comments_label : "Zanechaj odkaz" comments_title : "Komentáre" more_label : "Dozvedieť sa viac" related_label : "Podobné články" follow_label : "Sleduj:" feed_label : "Zoznam" powered_by : "Stránka vytvorená pomocou" website_label : "Web stránka" email_label : "Email" recent_posts : "Najnovšie príspevky" undefined_wpm : "Nedefinovaný parameter words_per_minute v _config.yml" comment_form_info : "Tvoja emailová adresa nebude publikovaná. Požadované polia sú označené" comment_form_comment_label : "Komentár" comment_form_md_info : "Markdown je podporovaný." comment_form_name_label : "Meno" comment_form_email_label : "Emailová adresa" comment_form_website_label : "Webstránka (voliteľné)" comment_btn_submit : "Vlož komentár" comment_btn_submitted : "Vložený" comment_success_msg : "Ďakujem za tvoj komentár! Po schválení bude zobrazený na stránke." comment_error_msg : "Prepáč, pri ukladaní nastala chyba. Ubezpeč sa prosím, že si vyplnil všetky požadované polia a skús znova." loading_label : "Načítava sa..." search_label_text : search_placeholder_text : "Zadaj hľadaný výraz..." search_algolia_no_results : results_found : "Nájdených výsledkov" back_to_top : "Na začiatok stránky" sk-SK: <<: *DEFAULT_SK # Hungarian # ----------------- hu: &DEFAULT_HU skip_links : skip_primary_nav : skip_content : skip_footer : page : "Oldal" pagination_previous : "Előző" pagination_next : "Következő" breadcrumb_home_label : "Kezdőlap" breadcrumb_separator : "/" menu_label : "Menü nyit/zár" search_label : toc_label : "Ezen az oldalon" ext_link_label : "Közvetlen Link" less_than : "kevesebb mint" minute_read : "eltöltött percek" share_on_label : "Megosztás" meta_label : tags_label : "Tagek:" categories_label : "Kategóriák:" date_label : "Frissítve:" comments_label : "Szólj hozzá!" comments_title : "Hozzászólások" more_label : "Tovább" related_label : "Ajánlások" follow_label : "Követés:" feed_label : "Folyam" powered_by : "Powered by" website_label : "Honlap" email_label : "Email" recent_posts : "Friss cikkek" undefined_wpm : "Ismeretlen paraméter words_per_minute : _config.yml" comment_form_info : "Az e-mail címed nem lesz publikus. A csillagozott mezők kitöltése kötelező" comment_form_comment_label : "Hozzászólás" comment_form_md_info : "Támogatott formázási mód: Markdown" comment_form_name_label : "Név" comment_form_email_label : "Email cím" comment_form_website_label : "Honlap (nem kötelező):" comment_btn_submit : "Hozzászólás elküldése" comment_btn_submitted : "Hozzászólás elküldve" comment_success_msg : "Köszönjük a Hozzászólást! A Hozzászólások csak előzetes moderáció után lesznek publikusak." comment_error_msg : "Hoppá, hiba történt a beküldés közben. Kérlek ellenőrizd hogy minden kötelező mező ki van-e töltve." loading_label : "Betöltés..." search_label_text : search_placeholder_text : "Keresendő szöveg..." search_algolia_no_results : results_found : "Találatok:" back_to_top : "Oldal tetejére" hu-HU: <<: *DEFAULT_HU # Romanian # ----------------- ro: &DEFAULT_RO skip_links : skip_primary_nav : skip_content : skip_footer : page : "Pagina" pagination_previous : "Anterior" pagination_next : "Următor" breadcrumb_home_label : "Acasă" breadcrumb_separator : "/" menu_label : "Comută meniul" search_label : toc_label : "Pe această pagină" ext_link_label : "Link direct" less_than : "mai puțin de" minute_read : "minute de citit" share_on_label : "Distribuie pe" meta_label : tags_label : "Etichete:" categories_label : "Categorii:" date_label : "Actualizat:" comments_label : "Lasă un comentariu" comments_title : "Comentarii" more_label : "Citește mai departe" related_label : "S-ar putea să-ți placă" follow_label : "Urmărește:" feed_label : "Feed RSS" powered_by : "Cu sprijinul" website_label : "Site" email_label : "Email" recent_posts : "Articole recente" undefined_wpm : "Parametru words_per_minute nedefinit în _config.yml" comment_form_info : "Adresa ta de email nu va fi făcută publică. Câmpurile marcate sunt obligatorii" comment_form_comment_label : "Comentariu" comment_form_md_info : "Markdown este suportat." comment_form_name_label : "Nume" comment_form_email_label : "Adresă de email" comment_form_website_label : "Site (opțional)" comment_btn_submit : "Trimite comentariul" comment_btn_submitted : "Trimis" comment_success_msg : "Mulțumesc pentru comentariu! Va apărea pe site în momentul în care va fi aprobat." comment_error_msg : "Scuze, este o problemă cu comentariul tău. Asigură-te că toate câmpurile obligatorii au fost completate și încearcă din nou." loading_label : "Se încarcă..." search_label_text : search_placeholder_text : "Caută ceva..." search_algolia_no_results : results_found : "Rezultate găsite" back_to_top : "Înapoi în susul paginii" ro-RO: <<: *DEFAULT_RO # Punjabi # ----------------- pa: &DEFAULT_PA 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 : "ਵਾਪਸ ਚੋਟੀ 'ਤੇ ਜਾਓ" pa-IN: <<: *DEFAULT_PA # Persian (Farsi) # -------------- fa: &DEFAULT_FA skip_links : skip_primary_nav : skip_content : skip_footer : page : "صفحه" pagination_previous : "قبلی" pagination_next : "بعدی" breadcrumb_home_label : "صفحه اصلی" breadcrumb_separator : "/" menu_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 : ".(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 : "نتایج" back_to_top : "بازگشت به بالا" fa-IR: <<: *DEFAULT_FA # Malayalam # ----------------- ml: &DEFAULT_ML 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 : "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 : "മുകളിലേയ്ക്ക്" ml-IN: <<: *DEFAULT_ML # Thailand # -------------- th: &DEFAULT_TH 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 : "ไม่สามารถระบุพารามิเตอร์ words_per_minute ได้ใน _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_placeholder_text : "ใส่คำค้นหาของคุณ..." search_algolia_no_results : results_found : "ผลการค้นหา พบ" back_to_top : "กลับด้านบน" th-TH: <<: *DEFAULT_TH # Hindi # ----------------- hi: &DEFAULT_HI skip_links : "लिंक छोड़ें" skip_primary_nav : "प्राथमिक पथ-प्रदर्शन छोड़ें" skip_content : "सामग्री छोड़ें" skip_footer : "अंत-में लिखा छोड़ें" page : "पृष्ठ" pagination_previous : "पिछला" pagination_next : "अगला" breadcrumb_home_label : "घर" breadcrumb_separator : "/" menu_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 : "शीर्ष पर वापस" hi-IN: <<: *DEFAULT_HI # Catalan # -------------- ca: &DEFAULT_CA skip_links : "Salta els enllaços" skip_primary_nav : "Salta a la navegació primària" skip_content : "Salta al contingut" skip_footer : "Salta al peu" page : "Pàgina" pagination_previous : "Anterior" pagination_next : "Següent" breadcrumb_home_label : "Inici" breadcrumb_separator : "/" menu_label : "Mostra/amaga el menú" search_label : "Mostra/amaga la cerca" toc_label : "En aquesta pàgina" ext_link_label : "Enllaç directe" less_than : "es llegeix en menys de" minute_read : "minut(s)" share_on_label : "Comparteix a" meta_label : tags_label : "Etiquetes:" categories_label : "Categories:" date_label : "Actualitzat:" comments_label : "Deixa un comentari" comments_title : "Comentaris" more_label : "Llegeix més" related_label : "També et pot agradar" follow_label : "Segueix-me:" feed_label : "Feed" powered_by : "Funciona amb" website_label : "Pàgina web" email_label : "Correu electrònic" recent_posts : "Entrades recents" undefined_wpm : "El paràmetre words_per_minute no està definit a _config.yml" comment_form_info : "No es mostrarà el teu correu electrònic. Els camps obligatoris estan marcats" comment_form_comment_label : "Comentari" comment_form_md_info : "Admet Markdown." comment_form_name_label : "Nom" comment_form_email_label : "Correu electrònic" comment_form_website_label : "Pàgina web (opcional)" comment_btn_submit : "Envia" comment_btn_submitted : "Enviat" comment_success_msg : "Gràcies pel teu comentari! Apareixerà un cop sigui aprovat." comment_error_msg : "Hi ha hagut un error enviat el comentari. Comprova que els camps obligatirs estiguin omplerts i torna-ho a provar." loading_label : "Carregant..." search_label_text : "Introdueix termes per cercar..." search_placeholder_text : "Introdueix termes per cercar..." search_algolia_no_results : results_found : "resultat(s)" back_to_top : "Torna a dalt" ca-ES: <<: *DEFAULT_CA # Irish (Gaeilge) # -------------- ga: &DEFAULT_GA skip_links : "Léim naisc" skip_primary_nav : "Léim chuig príomh naiscleanúint" skip_content : "Léim chuig inneachar" skip_footer : "Léim chuig buntásc" page : "Leathanach" pagination_previous : "Leathanach roimhe sin" pagination_next : "Céad leathanach eile" breadcrumb_home_label : "Baile" breadcrumb_separator : "/" menu_label : "Scorán roghchlár" search_label : "Scorán cuardach" toc_label : "Ar an leathanach seo" ext_link_label : "Nasc díreach" less_than : "níos lú na" minute_read : "a léamh" share_on_label : "Roinn ar" meta_label : tags_label : "Clibeanna:" categories_label : "Catagoírí:" date_label : "Nuashonraíodh:" comments_label : "Fág trácht" comments_title : "Tráchtanna" more_label : "Foghlaim níos mó" follow_label : "Lean:" feed_label : "Feed" powered_by : "Ag fáil cumhacht as" website_label : "Suíomh gréasáin" email_label : "R-phost" recent_posts : "Postálacha le deanaí" comment_form_comment_label : "Trácht" comment_form_name_label : "Ainm" comment_form_email_label : "Ríomhsheoladh" comment_form_website_label : "Suíomh gréasáin (roghnach)" comment_btn_submit : "Cuir isteach trácht" comment_btn_submitted : "Curtha isteach" loading_label : "Lódáil..." search_label_text : "Cuir do chuardach isteach..." search_placeholder_text : "Cuir do chuardach isteach..." search_algolia_no_results : results_found : "Torthaí aimsithe" back_to_top : "Ar ais go barr" ga-IE: <<: *DEFAULT_GA # Finnish / Suomi # ----------------- fi: &DEFAULT_FI skip_links : "Ohita linkit" skip_primary_nav : "Siirry päävalikkoon" skip_content : "Siirry sisältöön" skip_footer : "Siirry alareunaan" page : "Sivu" pagination_previous : "Edellinen" pagination_next : "Seuraava" breadcrumb_home_label : "Etusivu" breadcrumb_separator : "/" menu_label : "Avaa valikko" search_label : "Avaa haku" toc_label : "Tällä sivulla" ext_link_label : "Suora linkki" less_than : "vähemmän kuin" minute_read : "minuuttia luettavaa" share_on_label : "Jaa" meta_label : tags_label : "Tunnisteet:" categories_label : "Kategoriat:" date_label : "Päivitetty:" comments_label : "Jätä kommentti" comments_title : "Kommentit" more_label : "Lisää" related_label : "Saatat olla kiinnostunut myös" follow_label : "Seuraa:" feed_label : "Syöte" powered_by : "Käyttäen" website_label : "Kotisivu" email_label : "Sähköposti" recent_posts : "Viimeisimmät kirjoitukset" undefined_wpm : "words_per_minute asetusta ei ole määritelty _config.yml tiedostossa" comment_form_info : "Sinun sähköpostiosoitetta ei julkaista. Vaaditut kentät ovat merkittyjä" comment_form_comment_label : "Kommentti" comment_form_md_info : "Tukee markdown muotoilua." comment_form_name_label : "Nimi" comment_form_email_label : "Sähköpostiosoite" comment_form_website_label : "Nettisivu (vapaaehtoinen)" comment_btn_submit : "Lähetä" comment_btn_submitted : "Lähetetty" comment_success_msg : "Kiitos kommentista, se julkaistaan tällä sivulla tarkastelun jälkeen." comment_error_msg : "Tapahtui virhe. Tarkista, että olet täyttänyt kaikki kentät ja yritä uudelleen." loading_label : "Ladataan..." search_label_text : "Hakusana..." search_placeholder_text : "Hakusana..." search_algolia_no_results : "Ei hakutuloksia" results_found : "Tulosta" back_to_top : "Siirry ylös" # Myanmar (Burmese) # ----------------- my: &DEFAULT_MY 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 : "အပေါ်သို့ပြန်သွား" my-MM: <<: *DEFAULT_MY # Norwegian # ------- no: &DEFAULT_NO skip_links : "Hopp over lenker" skip_primary_nav : "Gå til primærnavigasjon" skip_content : "Gå til innhold" skip_footer : "Gå til fotnote" page : "Side" pagination_previous : "Forrige" pagination_next : "Neste" breadcrumb_home_label : "Hjem" breadcrumb_separator : "/" menu_label : "Vis/skjul meny" search_label : "Vis/skjul søk" toc_label : "På denne siden" ext_link_label : "Direkte lenke" less_than : "mindre enn" minute_read : "minutters lesing" share_on_label : "Del på" meta_label : tags_label : "Nøkkelord:" categories_label : "Kategorier:" date_label : "Oppdatert:" comments_label : "Skriv en kommentar" comments_title : "Kommentarer" more_label : "Lær mer" related_label : "Du vil kanskje også lese:" follow_label : "Følg:" feed_label : "Feed" powered_by : "Lagd med" website_label : "Nettside" email_label : "E-post" recent_posts : "Nyeste innlegg" undefined_wpm : "Parameteret words_per_minute er ikke definert i _config.yml" comment_form_info : "Din e-postadresse vil ikke bli publisert. Obligatoriske felt er markert" comment_form_comment_label : "Kommentar" comment_form_md_info : "Markdown er støttet" comment_form_name_label : "Navn" comment_form_email_label : "E-postadresse" comment_form_website_label : "Nettside (frivillig)" comment_btn_submit : "Send kommentar" comment_btn_submitted : "Sendt" comment_success_msg : "Takk for din kommentar! Den blir vist på siden så fort den er godkjent" comment_error_msg : "Beklager, noe gikk galt. Sjekk at alle obligatoriska felt er utfylt og prøv igjen" loading_label : "Laster..." search_label_text : "Skriv inn søkeord" search_placeholder_text : "Skriv inn søkeord" search_algolia_no_results : "Ingen treff" results_found : "Treff funnet" back_to_top : "Tillbake til toppen" no-NB: <<: *DEFAULT_NO no-NN: <<: *DEFAULT_NO # Hebrew # ------- he: &DEFAULT_HE 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 : "Undefined parameter words_per_minute at _config.yml" comment_form_info : "האימייל שלך נשמר חסוי. שדות חובה מסומנים" comment_form_comment_label : "הערה" comment_form_md_info : "Markdown is supported." 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 : "חזרה להתחלה" he-IL: <<: *DEFAULT_HE # Arabic (عربي) # -------------- ar: &DEFAULT_AR 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 : "تم إيجاد نتيجة" back_to_top : "الانتقال الى الأعلى" ar-SD: <<: *DEFAULT_AR ar-SA: <<: *DEFAULT_AR ar-AE: <<: *DEFAULT_AR ar-EG: <<: *DEFAULT_AR # Kiswahili # ----------------- sw: &DEFAULT_SW skip_links : "Ruka viungo" skip_primary_nav : "Ruka orodha kuu" skip_content : "Ruka maandiko maakuu" skip_footer : "Ruka chini" page : "Ukurasa" pagination_previous : "Rudi" pagination_next : "Endelea" breadcrumb_home_label : "Ukurasa wa kwanza" breadcrumb_separator : "/" menu_label : "Wezesha/Zima orodha" search_label : "Wezesha/Zima kutafuta" toc_label : "Kwa ukurasa huu" ext_link_label : "Kiungo mbio" less_than : "Soma kwa dakikia ndogo kuliko" minute_read : "Soma kwa dakika" share_on_label : "Tangaza" meta_label : tags_label : "Alama:" categories_label : "Aina:" date_label : "Geuzi ya mwisho:" comments_label : "Wacha maoni" comments_title : "Maoni" more_label : "Jifunze zaidi" related_label : "Pia, utapenda" follow_label : "Fuata:" feed_label : "Feed" powered_by : "Inatumia" website_label : "Tovuti" email_label : "Barua pepe" recent_posts : "Makala juzi" undefined_wpm : "Ingizo words_per_minute kwa _config.yml haijawekwa" comment_form_info : "Barua pepe yako haitaonekana. Kuna alama kwa ingizo tunahitaji." comment_form_comment_label : "Maoni" comment_form_md_info : "Unaweza kutumia `Markdown`." comment_form_name_label : "Jina" comment_form_email_label : "Barua pepe" comment_form_website_label : "Tovuti (hiari)" comment_btn_submit : "Tuma maoni" comment_btn_submitted : "Umetuma" comment_success_msg : "Asante kwa maoni yako! Itaonekana ikiridhiwa." comment_error_msg : "Pole, kuna makosa kwa ingizo yako. Tafadhali angalia umeandika kwa ingizo zote zinahitaji, na jaribu tena." loading_label : "Inapakiwa..." search_label_text : "Ingiza neno unatafuta..." search_placeholder_text : "Ingiza neno unatafuta..." search_algolia_no_results : "Hakuna matokeo" results_found : "Tumepata" back_to_top : "Rudi juu" sw-KE: <<: *DEFAULT_SW sw-TZ: <<: *DEFAULT_SW # Ukrainian / Українська # ----------------- uk: &DEFAULT_UK 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 : "Знайдено" uk-UA: <<: *DEFAULT_UK # Czech / čeština # ----------------- cs: &DEFAULT_CS skip_links : "Rychlé odkazy" skip_primary_nav : "Přejít na hlavní navigace" skip_content : "Přejít na obsah" skip_footer : "Přejít na zápatí" page : "Stránka" pagination_previous : "Předchozí" pagination_next : "Další" breadcrumb_home_label : "Domů" breadcrumb_separator : "/" menu_label : "Přepnout zobrazení menu" search_label : "Přepnout zobrazení vyhledávání" toc_label : "Na této stránce" ext_link_label : "Přímý odkaz" less_than : "méně než" minute_read : "minut" share_on_label : "Sdílet" meta_label : tags_label : "Štítky:" categories_label : "Rubriky:" date_label : "Aktualizováno:" comments_label : "Okomentovat" comments_title : "Komentáře" more_label : "Zjistit více" related_label : "Může se vám také líbit" follow_label : "Sledovat:" feed_label : "Zdroj" powered_by : "Používáme" website_label : "Web" email_label : "E-mail" recent_posts : "Nejnovější příspěvky" undefined_wpm : "V souboru _config.yml chybí parametr words_per_minute" comment_form_info : "Vaše e-mailová adresa nebude zveřejněna. Povinná pole jsou označena" comment_form_comment_label : "Komentář" comment_form_md_info : "Podporuje markdown." comment_form_name_label : "Jméno" comment_form_email_label : "E-mailová adresa" comment_form_website_label : "Web (volitelné)" comment_btn_submit : "Odeslat komentář" comment_btn_submitted : "Odesláno" comment_success_msg : "Děkujeme za komentář. Na stránce se objeví jakmile projde schválením." comment_error_msg : "Odeslání se nezdařilo. Zkontrolujte, že jste vyplnili všechna povinná pole a zkuste to znovu." loading_label : "Načítání..." search_label_text : "Zadejte vyhledávání..." search_placeholder_text : "Zadejte vyhledávání..." search_algolia_no_results : "Žádné výsledky" results_found : "Nalezené výsledky" back_to_top : "Na začátek stránky" cs-CZ: <<: *DEFAULT_CS # Bulgarian # ----------------- bg: &DEFAULT_BG 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 : "Недефиниран параметър words_per_minute в _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_placeholder_text : "Въведете термин за търсене..." search_algolia_no_results : "Няма резултати" results_found : "Намерени резултати" back_to_top : "Обратно към началото" bg-BG: <<: *DEFAULT_BG # Another locale # -------------- # ================================================ FILE: _includes/after-content.html ================================================ ================================================ FILE: _includes/analytics-providers/custom.html ================================================ ================================================ FILE: _includes/analytics-providers/google-gtag.html ================================================ ================================================ FILE: _includes/analytics-providers/google-universal.html ================================================ ================================================ FILE: _includes/analytics-providers/google.html ================================================ ================================================ FILE: _includes/analytics-providers/swetrix.html ================================================ ================================================ FILE: _includes/analytics.html ================================================ {% if jekyll.environment == 'production' and site.analytics.provider and page.analytics != false %} {% case site.analytics.provider %} {% when "google" %} {% include /analytics-providers/google.html %} {% when "google-universal" %} {% include /analytics-providers/google-universal.html %} {% when "google-gtag" %} {% include /analytics-providers/google-gtag.html %} {% when "swetrix" %} {% include /analytics-providers/swetrix.html %} {% when "custom" %} {% include /analytics-providers/custom.html %} {% endcase %} {% endif %} ================================================ FILE: _includes/archive-single.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if post.header.teaser %} {% capture teaser %}{{ post.header.teaser }}{% endcapture %} {% else %} {% assign teaser = site.teaser %} {% endif %} {% if post.id %} {% assign title = post.title | markdownify | remove: "

" | remove: "

" %} {% else %} {% assign title = post.title %} {% endif %}
================================================ FILE: _includes/author-profile-custom-links.html ================================================ ================================================ FILE: _includes/author-profile.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign author = page.author | default: page.authors[0] | default: site.author %} {% assign author = site.data.authors[author] | default: author %}
{% if author.avatar %} {% endif %}

{% if author.bio %}
{{ author.bio | markdownify }}
{% endif %}
================================================ FILE: _includes/before-related.html ================================================ ================================================ FILE: _includes/breadcrumbs.html ================================================ {% assign locale = include.locale | default: site.locale %} {% case site.category_archive.type %} {% when "liquid" %} {% assign path_type = "#" %} {% when "jekyll-archives" %} {% assign path_type = nil %} {% endcase %} {% if page.collection != 'posts' %} {% assign path_type = nil %} {% assign crumb_path = '/' %} {% else %} {% assign crumb_path = site.category_archive.path %} {% endif %} ================================================ FILE: _includes/category-list.html ================================================ {% assign locale = include.locale | default: site.locale %} {% case site.category_archive.type %} {% when "liquid" %} {% assign path_type = "#" %} {% when "jekyll-archives" %} {% assign path_type = nil %} {% endcase %} {% if site.category_archive.path %} {% assign categories_sorted = page.categories | sort_natural %}

{{ site.data.ui-text[locale].categories_label | default: "Categories:" }} {% for category_word in categories_sorted %} {% unless forloop.last %}, {% endunless %} {% endfor %}

{% endif %} ================================================ FILE: _includes/comment.html ================================================ ================================================ FILE: _includes/comments-providers/custom.html ================================================ ================================================ FILE: _includes/comments-providers/custom_scripts.html ================================================ ================================================ FILE: _includes/comments-providers/discourse.html ================================================ {% if site.comments.discourse.server %} {% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} {% endif %} ================================================ FILE: _includes/comments-providers/disqus.html ================================================ {% if site.comments.disqus.shortname %} {% endif %} ================================================ FILE: _includes/comments-providers/facebook.html ================================================
================================================ FILE: _includes/comments-providers/giscus.html ================================================ ================================================ FILE: _includes/comments-providers/scripts.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if site.comments.provider and page.comments %} {% case site.comments.provider %} {% when "disqus" %} {% include /comments-providers/disqus.html %} {% when "discourse" %} {% include /comments-providers/discourse.html %} {% when "facebook" %} {% include /comments-providers/facebook.html %} {% when "staticman" %} {% include /comments-providers/staticman.html locale=locale %} {% when "staticman_v2" %} {% include /comments-providers/staticman_v2.html locale=locale %} {% when "utterances" %} {% include /comments-providers/utterances.html %} {% when "giscus" %} {% include /comments-providers/giscus.html %} {% when "custom" %} {% include /comments-providers/custom_scripts.html %} {% endcase %} {% endif %} ================================================ FILE: _includes/comments-providers/staticman.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if site.repository and site.staticman.branch %} {% endif %} ================================================ FILE: _includes/comments-providers/staticman_v2.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if site.repository and site.comments.staticman.branch %} {% endif %} ================================================ FILE: _includes/comments-providers/utterances.html ================================================ ================================================ FILE: _includes/comments.html ================================================ {% assign locale = include.locale | default: site.locale %}
{% capture comments_label %}{{ site.data.ui-text[locale].comments_label | default: "Comments" }}{% endcapture %} {% case site.comments.provider %} {% when "discourse" %}

{{ comments_label }}

{% when "disqus" %}

{{ comments_label }}

{% when "facebook" %}

{{ comments_label }}

{% when "staticman_v2" %}
{% if site.repository and site.comments.staticman.branch %}
{% if site.data.comments[page.slug] %}

{{ site.data.ui-text[locale].comments_title | default: "Comments" }}

{% assign comments = site.data.comments[page.slug] %} {% assign commentObjects = '' | split: '' %} {% for comment in comments %} {% assign commentObject = comment[1] %} {% assign commentObjects = commentObjects | push: commentObject %} {% endfor %} {% assign comments = commentObjects | sort: "date" %} {% for comment in comments %} {% assign email = comment.email %} {% assign name = comment.name %} {% assign url = comment.url %} {% assign date = comment.date %} {% assign message = comment.message %} {% include comment.html index=forloop.index email=email name=name url=url date=date message=message %} {% endfor %} {% endif %}

{{ site.data.ui-text[locale].comments_label | default: "Leave a Comment" }}

{{ site.data.ui-text[locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} *

{{ site.data.ui-text[locale].loading_label | default: "Loading..." }}
{% if site.reCaptcha.siteKey %}
{% endif %}
{% if site.reCaptcha.siteKey %}{% endif %} {% endif %}
{% when "staticman" %}
{% if site.repository and site.staticman.branch %}
{% if site.data.comments[page.slug] %}

{{ site.data.ui-text[locale].comments_title | default: "Comments" }}

{% assign comments = site.data.comments[page.slug] %} {% assign commentObjects = '' | split: '' %} {% for comment in comments %} {% assign commentObject = comment[1] %} {% assign commentObjects = commentObjects | push: commentObject %} {% endfor %} {% assign comments = commentObjects | sort: "date" %} {% for comment in comments %} {% assign email = comment.email %} {% assign name = comment.name %} {% assign url = comment.url %} {% assign date = comment.date %} {% assign message = comment.message %} {% include comment.html index=forloop.index email=email name=name url=url date=date message=message %} {% endfor %} {% endif %}

{{ site.data.ui-text[locale].comments_label | default: "Leave a Comment" }}

{{ site.data.ui-text[locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} *

{{ site.data.ui-text[locale].loading_label | default: "Loading..." }}
{% endif %}
{% when "utterances" %}

{{ comments_label }}

{% when "giscus" %}

{{ comments_label }}

{% when "custom" %} {% include /comments-providers/custom.html %} {% endcase %}
================================================ FILE: _includes/copyright.html ================================================ ================================================ FILE: _includes/copyright.js ================================================ /*! * Minimal Mistakes Jekyll Theme 4.28.0 by Michael Rose * Copyright 2013-2026 Michael Rose - mademistakes.com | @mmistakes * Copyright 2024-2026 iBug - ibugone.com | @iBug * Free for personal and commercial use under the MIT license * https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE */ ================================================ FILE: _includes/documents-collection.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign entries = include.entries | default: site[include.collection] | where_exp: "post", "post.hidden != true" %} {% if include.sort_by %} {% assign entries = entries | sort: include.sort_by %} {% endif %} {% if include.sort_order == 'reverse' %} {% assign entries = entries | reverse %} {% endif %} {%- for post in entries -%} {% include archive-single.html locale=locale type=include.type %} {%- endfor -%} ================================================ FILE: _includes/feature_row ================================================ {% assign locale = include.locale | default: site.locale %} {% if include.id %} {% assign feature_row = page[include.id] %} {% else %} {% assign feature_row = page.feature_row %} {% endif %}
{% for f in feature_row %}
{% if f.image_path %}
{% if f.alt %}{{ f.alt }}{% endif %} {% if f.image_caption %} {{ f.image_caption | markdownify | remove: "

" | remove: "

" }}
{% endif %}
{% endif %}
{% if f.title %}

{{ f.title }}

{% endif %} {% if f.excerpt %}
{{ f.excerpt | markdownify }}
{% endif %} {% if f.url %}

{{ f.btn_label | default: site.data.ui-text[locale].more_label | default: "Learn More" }}

{% endif %}
{% endfor %}
================================================ FILE: _includes/figure ================================================
{%- if include.popup -%}{%- endif -%} {% if include.alt %}{{ include.alt | escape_once }}{% endif %} {%- if include.popup -%}{%- endif -%} {%- if include.caption -%}
{{ include.caption | markdownify | remove: "

" | remove: "

" }}
{%- endif -%}
================================================ FILE: _includes/footer/custom.html ================================================ ================================================ FILE: _includes/footer.html ================================================ {% assign locale = include.locale | default: site.locale %} {% unless site.atom_feed.hide %} {% assign show_atom = true %} {% endunless %} {% if site.footer.links or show_atom %} {% endif %} ================================================ FILE: _includes/gallery ================================================ {% if include.id %} {% assign gallery = page[include.id] %} {% else %} {% assign gallery = page.gallery %} {% endif %} {% if include.layout %} {% assign gallery_layout = include.layout %} {% else %} {% if gallery.size == 2 %} {% assign gallery_layout = 'half' %} {% elsif gallery.size >= 3 %} {% assign gallery_layout = 'third' %} {% else %} {% assign gallery_layout = '' %} {% endif %} {% endif %} ================================================ FILE: _includes/group-by-array ================================================ {% assign __empty_array = '' | split: ',' %} {% assign group_names = __empty_array %} {% assign group_items = __empty_array %} {% assign __names = include.collection | map: include.field %} {% assign __names = __names | join: ',' | join: ',' | split: ',' %} {% assign __names = __names | sort %} {% for name in __names %} {% unless name == previous %} {% assign group_names = group_names | push: name %} {% endunless %} {% assign previous = name %} {% endfor %} {% for name in group_names %} {% assign __item = __empty_array %} {% for __element in include.collection %} {% if __element[include.field] contains name %} {% assign __item = __item | push: __element %} {% endif %} {% endfor %} {% assign group_items = group_items | push: __item %} {% endfor %} ================================================ FILE: _includes/head/custom.html ================================================ ================================================ FILE: _includes/head.html ================================================ {% assign locale = include.locale | default: site.locale %} {% include seo.html locale=locale %} {% unless site.atom_feed.hide %} {% endunless %} {%- comment %} https://docs.google.com/presentation/d/1rmxwWa9P6_xHqonmh5ONXRS-jPc5XKbnv99Rjkhe04s/present {% endcomment -%} {% if site.head_scripts %} {% for script in site.head_scripts %} {% endfor %} {% endif %} ================================================ FILE: _includes/masthead.html ================================================ {% assign locale = include.locale | default: site.locale %} {% capture logo_path %}{{ site.logo }}{% endcapture %}
================================================ FILE: _includes/nav_list ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/page__date.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign date_format = site.date_format | default: "%B %-d, %Y" %} {% if page.last_modified_at %}

{{ site.data.ui-text[locale].date_label | default: "Updated:" }}

{% elsif page.date %}

{{ site.data.ui-text[locale].date_label | default: "Updated:" }}

{% endif %} ================================================ FILE: _includes/page__hero.html ================================================ {% assign locale = include.locale | default: site.locale %} {% capture overlay_img_path %}{{ page.header.overlay_image | relative_url }}{% endcapture %} {% if page.header.overlay_filter contains "gradient" %} {% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %} {% elsif page.header.overlay_filter contains "rgba" %} {% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %} {% capture overlay_filter %}linear-gradient({{ overlay_filter }}, {{ overlay_filter }}){% endcapture %} {% elsif page.header.overlay_filter %} {% capture overlay_filter %}rgba(0, 0, 0, {{ page.header.overlay_filter }}){% endcapture %} {% capture overlay_filter %}linear-gradient({{ overlay_filter }}, {{ overlay_filter }}){% endcapture %} {% endif %} {% if page.header.image_description %} {% assign image_description = page.header.image_description %} {% else %} {% assign image_description = page.title %} {% endif %} {% assign image_description = image_description | markdownify | strip_html | strip_newlines | escape_once %}
{% if page.header.overlay_color or page.header.overlay_image %}

{% if paginator and site.paginate_show_page_num %} {{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[locale].page | default: "Page" }} {{ paginator.page }}{% endunless %} {% else %} {{ page.title | default: site.title | markdownify | remove: "

" | remove: "

" }} {% endif %}

{% if page.tagline %}

{{ page.tagline | markdownify | remove: "

" | remove: "

" }}

{% elsif page.header.show_overlay_excerpt != false and page.excerpt %}

{{ page.excerpt | markdownify | remove: "

" | remove: "

" }}

{% endif %} {% include page__meta.html locale=locale %} {% if page.header.actions %}

{% for action in page.header.actions %} {{ action.label | default: site.data.ui-text[locale].more_label | default: "Learn More" }} {% endfor %}

{% endif %}
{% else %} {{ image_description }} {% endif %} {% if page.header.caption %} {{ page.header.caption | markdownify | remove: "

" | remove: "

" }}
{% endif %}
================================================ FILE: _includes/page__hero_video.html ================================================ {% assign video = page.header.video %} {% include video id=video.id provider=video.provider danmaku=video.danmaku %} ================================================ FILE: _includes/page__meta.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign document = post | default: page %} {% if document.read_time or document.show_date %}

{% if document.show_date and document.date %} {% assign date = document.date %} {% assign date_format = site.date_format | default: "%B %-d, %Y" %} {% endif %} {% if document.read_time and document.show_date %}{% endif %} {% if document.read_time %} {% assign words_per_minute = document.words_per_minute | default: site.words_per_minute | default: 200 %} {% assign words = document.content | strip_html | number_of_words %} {% if words < words_per_minute %} {{ site.data.ui-text[locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[locale].minute_read | default: "minute read" }} {% elsif words == words_per_minute %} 1 {{ site.data.ui-text[locale].minute_read | default: "minute read" }} {% else %} {{ words | divided_by: words_per_minute }} {{ site.data.ui-text[locale].minute_read | default: "minute read" }} {% endif %} {% endif %}

{% endif %} ================================================ FILE: _includes/page__related.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign posts = include.posts | where_exp: "post", "post.hidden != true" %} ================================================ FILE: _includes/page__taxonomy.html ================================================ {% assign locale = include.locale | default: site.locale %} {% unless site.show_taxonomy == false %} {% if site.tag_archive.type and page.tags[0] %} {% include tag-list.html locale=locale %} {% endif %} {% if site.category_archive.type and page.categories[0] %} {% include category-list.html locale=locale %} {% endif %} {% endunless %} ================================================ FILE: _includes/paginator-v1.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if paginator.total_pages > 1 %} {% endif %} ================================================ FILE: _includes/paginator-v2.html ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/paginator.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if paginator.total_pages > 1 %} {% if site.paginate %} {% include paginator-v1.html locale=locale %} {% elsif site.pagination.enabled %} {% include paginator-v2.html locale=locale %} {% endif %} {% endif %} ================================================ FILE: _includes/post_pagination.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if page.previous or page.next %} {% endif %} ================================================ FILE: _includes/posts-category.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign posts = site.categories[include.taxonomy] | where_exp: "post", "post.hidden != true" %} {%- for post in posts -%} {% include archive-single.html locale=locale %} {%- endfor -%} ================================================ FILE: _includes/posts-tag.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign posts = site.tags[include.taxonomy] | where_exp: "post", "post.hidden != true" %} {%- for post in posts -%} {% include archive-single.html locale=locale %} {%- endfor -%} ================================================ FILE: _includes/posts-taxonomy.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign items_max = 0 %} {% for item in include.taxonomies %} {% if item[1].size > items_max %} {% assign items_max = item[1].size %} {% endif %} {% endfor %}
    {% for i in (1..items_max) reversed %} {% for item in include.taxonomies %} {% if item[1].size == i %}
  • {{ item[0] }} {{ i }}
  • {% endif %} {% endfor %} {% endfor %}
{% assign entries_layout = page.entries_layout | default: 'list' %} {% for i in (1..items_max) reversed %} {% for taxonomy in include.taxonomies %} {% if taxonomy[1].size == i %}

{{ taxonomy[0] }}

{% for post in taxonomy.last %} {% include archive-single.html locale=locale type=entries_layout %} {% endfor %}
{{ site.data.ui-text[locale].back_to_top | default: 'Back to Top' }} ↑
{% endif %} {% endfor %} {% endfor %} ================================================ FILE: _includes/schema.html ================================================ ================================================ FILE: _includes/scripts.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if site.footer_scripts %} {% for script in site.footer_scripts %} {% endfor %} {% else %} {% endif %} {% if site.search == true or page.layout == "search" %} {%- assign search_provider = site.search_provider | default: "lunr" -%} {%- case search_provider -%} {%- when "lunr" -%} {% include_cached search/lunr-search-scripts.html locale=locale %} {%- when "google" -%} {% include_cached search/google-search-scripts.html %} {%- when "algolia" -%} {% include_cached search/algolia-search-scripts.html locale=locale %} {%- endcase -%} {% endif %} {% include analytics.html %} {% include /comments-providers/scripts.html locale=locale %} {% if site.after_footer_scripts %} {% for script in site.after_footer_scripts %} {% endfor %} {% endif %} ================================================ FILE: _includes/search/algolia-search-scripts.html ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/search/google-search-scripts.html ================================================ ================================================ FILE: _includes/search/lunr-search-scripts.html ================================================ {% assign locale = include.locale | default: site.locale %} {% assign lang = locale | slice: 0,2 | default: "en" %} {% case lang %} {% when "gr" %} {% assign lang = "gr" %} {% else %} {% assign lang = "en" %} {% endcase %} ================================================ FILE: _includes/search/search_form.html ================================================ {% assign locale = include.locale | default: site.locale %}
{%- assign search_provider = site.search_provider | default: "lunr" -%} {%- case search_provider -%} {%- when "lunr" -%}
{%- when "google" -%}
{%- when "algolia" -%}
{%- endcase -%}
================================================ FILE: _includes/seo.html ================================================ {% assign locale = include.locale | default: site.locale %} {%- assign title_separator = site.title_separator | default: '-' -%} {%- assign page_title = page.title | default: site.title | replace: '|', '|' -%} {%- if page_title contains site.title -%} {%- assign seo_title = page_title | replace: '|', '|' -%} {%- else -%} {%- assign seo_title = page_title | append: " " | append: title_separator | append: " " | append: site.title | replace: '|', '|' -%} {%- endif -%} {%- assign page_title = page_title | markdownify | strip_html | strip_newlines | escape_once -%} {%- assign seo_title = seo_title | markdownify | strip_html | strip_newlines | escape_once -%} {%- assign canonical_url = page.canonical_url | default: page.url | replace: "/index.html", "/" | absolute_url %} {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%} {%- if seo_description -%} {%- assign seo_description = seo_description | markdownify | strip_html | newline_to_br | strip_newlines | replace: '
', ' ' | escape_once | strip -%} {%- endif -%} {%- assign author = page.author | default: page.authors[0] | default: site.author -%} {%- assign author = site.data.authors[author] | default: author -%} {%- if author.twitter -%} {%- assign author_twitter = author.twitter | replace: "@", "" -%} {%- endif -%} {%- assign page_large_image = page.header.og_image | default: page.header.overlay_image | default: page.header.image | absolute_url | escape -%} {%- assign page_teaser_image = page.header.teaser | default: site.og_image | absolute_url | escape -%} {%- assign site_og_image = site.og_image | absolute_url | escape -%} {%- assign og_image_alt = page.header.og_image_alt | default: site.og_image_alt | escape -%} {%- if page.date -%} {%- assign og_type = "article" -%} {%- else -%} {%- assign og_type = "website" -%} {%- endif -%} {{ seo_title }}{% if paginator %}{% unless paginator.page == 1 %} {{ title_separator }} {{ site.data.ui-text[locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %} {% if author.name %} {% if og_type == "article" %} {% endif %} {% endif %} {% if seo_description %} {% endif %} {% if page_large_image %} {% if og_image_alt %} {% endif %} {% elsif page_teaser_image %} {% if og_image_alt %} {% endif %} {% endif %} {% if site.twitter.username %} {% if page_large_image %} {% if og_image_alt %} {% endif %} {% else %} {% if page_teaser_image %} {% if og_image_alt %} {% endif %} {% endif %} {% endif %} {% if author_twitter %} {% endif %} {% endif %} {% if author.fediverse %} {% endif %} {% if page.date %} {% endif %} {% if og_type == "article" and page.last_modified_at %} {% endif %} {% if site.facebook %} {% if site.facebook.publisher %} {% endif %} {% if site.facebook.app_id %} {% endif %} {% endif %} {% if paginator.previous_page %} {% endif %} {% if paginator.next_page %} {% endif %} {% if page.url == '/' %} {% include schema.html %} {% endif %} {% if site.google_site_verification %} {% endif %} {% if site.bing_site_verification %} {% endif %} {% if site.alexa_site_verification %} {% endif %} {% if site.yandex_site_verification %} {% endif %} {% if site.naver_site_verification %} {% endif %} {% if site.baidu_site_verification %} {% endif %} ================================================ FILE: _includes/sidebar-custom.html ================================================ ================================================ FILE: _includes/sidebar.html ================================================ {% assign locale = include.locale | default: site.locale %} {% if page.author_profile or layout.author_profile or page.sidebar %} {% endif %} ================================================ FILE: _includes/skip-links.html ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/social-share.html ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/tag-list.html ================================================ {% assign locale = include.locale | default: site.locale %} {% case site.tag_archive.type %} {% when "liquid" %} {% assign path_type = "#" %} {% when "jekyll-archives" %} {% assign path_type = nil %} {% endcase %} {% if site.tag_archive.path %} {% assign tags_sorted = page.tags | sort_natural %}

{{ site.data.ui-text[locale].tags_label | default: "Tags:" }} {% for tag_word in tags_sorted %} {% unless forloop.last %}, {% endunless %} {% endfor %}

{% endif %} ================================================ FILE: _includes/toc ================================================ {% assign locale = include.locale | default: site.locale %} ================================================ FILE: _includes/toc.html ================================================ {% capture tocWorkspace %} {% comment %} Copyright (c) 2017 Vladimir "allejo" Jimenez 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. {% endcomment %} {% comment %} Version 1.2.1 https://github.com/allejo/jekyll-toc "...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe Usage: {% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %} Parameters: * html (string) - the HTML of compiled markdown generated by kramdown in Jekyll Optional Parameters: * sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC * class (string) : '' - a CSS class assigned to the TOC * id (string) : '' - an ID to assigned to the TOC * h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored * h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored * ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list * item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level * submenu_class (string) : '' - add custom class(es) for each child group of headings; has support for '%level%' placeholder which is the current "submenu" heading level * base_url (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content * anchor_class (string) : '' - add custom class(es) for each anchor element * skip_no_ids (bool) : false - skip headers that do not have an `id` attribute * flat_toc (bool) : false - when set to true, the TOC will be a single level list Output: An ordered or unordered list representing the table of contents of a markdown block. This snippet will only generate the table of contents and will NOT output the markdown given to it {% endcomment %} {% capture newline %} {% endcapture %} {% assign newline = newline | rstrip %} {% capture deprecation_warnings %}{% endcapture %} {% if include.baseurl %} {% capture deprecation_warnings %}{{ deprecation_warnings }}{{ newline }}{% endcapture %} {% endif %} {% if include.skipNoIDs %} {% capture deprecation_warnings %}{{ deprecation_warnings }}{{ newline }}{% endcapture %} {% endif %} {% capture jekyll_toc %}{% endcapture %} {% assign orderedList = include.ordered | default: false %} {% assign flatToc = include.flat_toc | default: false %} {% assign baseURL = include.base_url | default: include.baseurl | default: '' %} {% assign skipNoIDs = include.skip_no_ids | default: include.skipNoIDs | default: false %} {% assign minHeader = include.h_min | default: 1 %} {% assign maxHeader = include.h_max | default: 6 %} {% assign nodes = include.html | strip | split: ' maxHeader %} {% continue %} {% endif %} {% assign _workspace = node | split: '' | first }}>{% endcapture %} {% assign header = _workspace[0] | replace: _hAttrToStrip, '' %} {% if include.item_class and include.item_class != blank %} {% capture listItemClass %} class="{{ include.item_class | replace: '%level%', currLevel | split: '.' | join: ' ' }}"{% endcapture %} {% endif %} {% if include.submenu_class and include.submenu_class != blank %} {% assign subMenuLevel = currLevel | minus: 1 %} {% capture subMenuClass %} class="{{ include.submenu_class | replace: '%level%', subMenuLevel | split: '.' | join: ' ' }}"{% endcapture %} {% endif %} {% capture anchorBody %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %} {% if htmlID %} {% capture anchorAttributes %} href="{% if baseURL %}{{ baseURL }}{% endif %}#{{ htmlID }}"{% endcapture %} {% if include.anchor_class %} {% capture anchorAttributes %}{{ anchorAttributes }} class="{{ include.anchor_class | split: '.' | join: ' ' }}"{% endcapture %} {% endif %} {% capture listItem %}{{ anchorBody }}{% endcapture %} {% elsif skipNoIDs == true %} {% continue %} {% else %} {% capture listItem %}{{ anchorBody }}{% endcapture %} {% endif %} {% if currLevel > lastLevel and flatToc == false %} {% capture jekyll_toc %}{{ jekyll_toc }}<{{ listModifier }}{{ subMenuClass }}>{% endcapture %} {% elsif currLevel < lastLevel and flatToc == false %} {% assign repeatCount = lastLevel | minus: currLevel %} {% for i in (1..repeatCount) %} {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} {% endfor %} {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} {% else %} {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} {% endif %} {% capture jekyll_toc %}{{ jekyll_toc }}{{ listItem }}{% endcapture %} {% assign lastLevel = currLevel %} {% assign firstHeader = false %} {% endfor %} {% if flatToc == true %} {% assign repeatCount = 1 %} {% else %} {% assign repeatCount = minHeader | minus: 1 %} {% assign repeatCount = lastLevel | minus: repeatCount %} {% endif %} {% for i in (1..repeatCount) %} {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} {% endfor %} {% if jekyll_toc != '' %} {% assign rootAttributes = '' %} {% if include.class and include.class != blank %} {% capture rootAttributes %} class="{{ include.class | split: '.' | join: ' ' }}"{% endcapture %} {% endif %} {% if include.id and include.id != blank %} {% capture rootAttributes %}{{ rootAttributes }} id="{{ include.id }}"{% endcapture %} {% endif %} {% if rootAttributes %} {% assign nodes = jekyll_toc | split: '>' %} {% capture jekyll_toc %}<{{ listModifier }}{{ rootAttributes }}>{{ nodes | shift | join: '>' }}>{% endcapture %} {% endif %} {% endif %} {% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc -}} ================================================ FILE: _includes/video ================================================ {% capture video_id %}{{ include.id }}{% endcapture %} {% capture video_provider %}{{ include.provider }}{% endcapture %} {% capture video_danmaku %}{{ include.danmaku | default: 0 }}{% endcapture %} {% capture video_src %} {% case video_provider %} {% when "vimeo" %} https://player.vimeo.com/video/{{ video_id }}?dnt=true {% when "youtube" %} https://www.youtube-nocookie.com/embed/{{ video_id }} {% when "google-drive" %} https://drive.google.com/file/d/{{ video_id }}/preview {% when "bilibili" %} https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku={{ video_danmaku }} {% endcase %} {% endcapture %} {% assign video_src = video_src | strip %} {% unless video_src == "" %}
{% endunless %} ================================================ FILE: _layouts/archive-taxonomy.html ================================================ --- layout: default author_profile: false --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} {% include page__hero.html locale=locale %} {% elsif page.header.video.id and page.header.video.provider %} {% include page__hero_video.html %} {% endif %} {% if page.url != "/" and site.breadcrumbs %} {% unless paginator %} {% include breadcrumbs.html locale=locale %} {% endunless %} {% endif %}
{% include sidebar.html locale=locale %}
{% unless page.header.overlay_color or page.header.overlay_image %}

{{ page.title }}

{% endunless %} {% for post in page.posts %} {% include archive-single.html locale=locale %} {% endfor %}
================================================ FILE: _layouts/archive.html ================================================ --- layout: default --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} {% include page__hero.html locale=locale %} {% elsif page.header.video.id and page.header.video.provider %} {% include page__hero_video.html %} {% endif %} {% if page.url != "/" and site.breadcrumbs %} {% unless paginator %} {% include breadcrumbs.html locale=locale %} {% endunless %} {% endif %}
{% include sidebar.html locale=locale %}
{% unless page.header.overlay_color or page.header.overlay_image %}

{{ page.title }}

{% endunless %} {{ content }}
================================================ FILE: _layouts/categories.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }} {% include posts-taxonomy.html locale=locale taxonomies=site.categories %} ================================================ FILE: _layouts/category.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }} {% assign entries_layout = page.entries_layout | default: 'list' %}
{% include posts-category.html locale=locale taxonomy=page.taxonomy type=entries_layout %}
================================================ FILE: _layouts/collection.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }} {% assign entries_layout = page.entries_layout | default: 'list' %}
{% include documents-collection.html locale=locale collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=entries_layout %}
================================================ FILE: _layouts/compress.html ================================================ --- # Jekyll layout that compresses HTML # v3.1.0 # http://jch.penibelst.de/ # © 2014–2015 Anatol Broder # MIT License --- {% capture _LINE_FEED %} {% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment or site.compress_html.ignore.envs == "all" %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_startings %}
startings {{ _profile_startings }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} ================================================ FILE: _layouts/default.html ================================================ --- --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% include copyright.html %} {% include head.html locale=locale %} {% include head/custom.html %} {% include_cached skip-links.html locale=locale %} {% include_cached masthead.html locale=locale %}
{{ content }} {% include after-content.html %}
{% if site.search == true %}
{% include_cached search/search_form.html locale=locale %}
{% endif %} {% include scripts.html locale=locale %} ================================================ FILE: _layouts/home.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }}

{{ site.data.ui-text[locale].recent_posts | default: "Recent Posts" }}

{% if paginator %} {% assign posts = paginator.posts %} {% else %} {% assign posts = site.posts %} {% endif %} {% assign entries_layout = page.entries_layout | default: 'list' %}
{% include documents-collection.html locale=locale entries=posts type=entries_layout %}
{% include paginator.html locale=locale %} ================================================ FILE: _layouts/posts.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }}
    {% assign postsInYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %} {% for year in postsInYear %}
  • {{ year.name }} {{ year.items | size }}
  • {% endfor %}
{% assign entries_layout = page.entries_layout | default: 'list' %} {% assign postsByYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %} {% for year in postsByYear %}

{{ year.name }}

{% for post in year.items %} {% include archive-single.html locale=locale type=entries_layout %} {% endfor %}
{{ site.data.ui-text[locale].back_to_top | default: 'Back to Top' }} ↑
{% endfor %} ================================================ FILE: _layouts/search.html ================================================ --- layout: default --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} {% include page__hero.html locale=locale %} {% endif %} {% if page.url != "/" and site.breadcrumbs %} {% unless paginator %} {% include breadcrumbs.html locale=locale %} {% endunless %} {% endif %}
{% include sidebar.html locale=locale %}
{% unless page.header.overlay_color or page.header.overlay_image %}

{{ page.title }}

{% endunless %} {{ content }} {%- assign search_provider = site.search_provider | default: "lunr" -%} {%- case search_provider -%} {%- when "lunr" -%}
{%- when "google" -%}
{%- when "algolia" -%}
{%- endcase -%}
================================================ FILE: _layouts/single.html ================================================ --- layout: default --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} {% include page__hero.html locale=locale %} {% elsif page.header.video.id and page.header.video.provider %} {% include page__hero_video.html %} {% endif %} {% assign breadcrumbs_enabled = site.breadcrumbs %} {% if page.breadcrumbs != null %} {% assign breadcrumbs_enabled = page.breadcrumbs %} {% endif %} {% if page.url != "/" and breadcrumbs_enabled %} {% unless paginator %} {% include breadcrumbs.html locale=locale %} {% endunless %} {% endif %}
{% include sidebar.html locale=locale %}
{% if page.title %}{% endif %} {% if page.excerpt %}{% endif %} {% if page.date %}{% endif %} {% if page.last_modified_at %}{% endif %}
{% unless page.header.overlay_color or page.header.overlay_image %}
{% if page.title -%}

{%- endif %} {% include page__meta.html locale=locale %}
{% endunless %}
{% if page.toc %} {% endif %} {{ content }} {% if page.link %}{% endif %}
{% if site.data.ui-text[locale].meta_label %}

{{ site.data.ui-text[locale].meta_label }}

{% endif %} {% include page__taxonomy.html locale=locale %} {% include page__date.html locale=locale %}
{% if page.share %}{% include social-share.html locale=locale %}{% endif %} {% include post_pagination.html locale=locale %}
{% if site.comments.provider and page.comments %} {% if jekyll.environment == 'production' %} {% include comments.html locale=locale %} {% else %}

Comments are configured with provider: {{ site.comments.provider }}, but are disabled in non-production environments.

{% endif %} {% endif %}
{% comment %}{% endcomment %} {% if page.id and page.related and site.related_posts.size > 0 %} {% include page__related.html locale=locale posts=site.related_posts %} {% comment %}{% endcomment %} {% elsif page.id and page.related %} {% include page__related.html locale=locale posts=site.posts %} {% endif %}
================================================ FILE: _layouts/splash.html ================================================ --- layout: default --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} {% include page__hero.html locale=locale %} {% elsif page.header.video.id and page.header.video.provider %} {% include page__hero_video.html %} {% endif %}
{% if page.title %}{% endif %} {% if page.excerpt %}{% endif %} {% if page.date %}{% endif %} {% if page.last_modified_at %}{% endif %}
{{ content }}
================================================ FILE: _layouts/tag.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }} {% assign entries_layout = page.entries_layout | default: 'list' %}
{% include posts-tag.html locale=locale taxonomy=page.taxonomy type=entries_layout %}
================================================ FILE: _layouts/tags.html ================================================ --- layout: archive --- {%- assign locale = page.locale | default: layout.locale | default: site.locale %} {{ content }} {% include posts-taxonomy.html locale=locale taxonomies=site.tags %} ================================================ FILE: _sass/minimal-mistakes/_animations.scss ================================================ /* ========================================================================== ANIMATIONS ========================================================================== */ @-webkit-keyframes intro { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes intro { 0% { opacity: 0; } 100% { opacity: 1; } } ================================================ FILE: _sass/minimal-mistakes/_archive.scss ================================================ /* ========================================================================== ARCHIVE ========================================================================== */ .archive { margin-top: 1em; margin-bottom: 2em; @include breakpoint($large) { float: inline-end; width: calc(100% - #{$right-sidebar-width-narrow}); padding-inline-end: $right-sidebar-width-narrow; } @include breakpoint($x-large) { width: calc(100% - #{$right-sidebar-width}); padding-inline-end: $right-sidebar-width; } } .archive__item { position: relative; a { position: relative; z-index: 10; } a[rel="permalink"] { position: static; } } .archive__subtitle { margin: 1.414em 0 0.5em; padding-bottom: 0.5em; font-size: $type-size-5; color: $muted-text-color; border-bottom: 1px solid $border-color; + .list__item .archive__item-title { margin-top: 0.5em; } } .archive__item-title { margin-bottom: 0.25em; font-family: $sans-serif-narrow; line-height: initial; overflow: hidden; text-overflow: ellipsis; a[rel="permalink"]::before { content: ''; position: absolute; inset: 0; } a + a { opacity: 0.5; } } /* remove border*/ .page__content { .archive__item-title { margin-top: 1em; border-bottom: none; } } .archive__item-excerpt { margin-top: 0; font-size: $type-size-6; & + p { text-indent: 0; } a { position: relative; } } .archive__item-teaser { position: relative; border-radius: $border-radius; overflow: hidden; img { width: 100%; } } .archive__item-caption { position: absolute; bottom: 0; inset-inline-end: 0; margin: 0 auto; padding: 2px 5px; color: #fff; font-family: $caption-font-family; font-size: $type-size-8; background: #000; text-align: end; z-index: 5; opacity: 0.5; border-radius: $border-radius 0 0 0; @include breakpoint($large) { padding: 5px 10px; } a { color: #fff; text-decoration: none; } } /* List view ========================================================================== */ .list__item { .page__meta { margin: 0 0 4px; font-size: 0.6em; } } /* Grid view ========================================================================== */ .archive { .grid__wrapper { /* extend grid elements to the right */ @include breakpoint($large) { margin-inline-end: -1 * $right-sidebar-width-narrow; } @include breakpoint($x-large) { margin-inline-end: -1 * $right-sidebar-width; } } } .grid__item { margin-bottom: 2em; @include breakpoint($small) { float: inline-start; width: span(5 of 10); &:nth-child(2n + 1) { clear: both; margin-inline-start: 0; } &:nth-child(2n + 2) { clear: none; margin-inline-start: gutter(of 10); } } @include breakpoint($medium) { margin-inline: 0; /* override margin*/ width: span(3 of 12); &:nth-child(2n + 1) { clear: none; } &:nth-child(4n + 1) { clear: both; } &:nth-child(4n + 2) { clear: none; margin-inline-start: gutter(1 of 12); } &:nth-child(4n + 3) { clear: none; margin-inline-start: gutter(1 of 12); } &:nth-child(4n + 4) { clear: none; margin-inline-start: gutter(1 of 12); } } .page__meta { margin: 0 0 4px; font-size: 0.6em; } .page__meta-sep { display: block; &::before { display: none; } } .archive__item-title { margin-top: 0.5em; font-size: $type-size-5; } .archive__item-excerpt { display: none; @include breakpoint($medium) { display: block; font-size: $type-size-6; } } .archive__item-teaser { @include breakpoint($small) { max-height: 200px; } @include breakpoint($medium) { max-height: 120px; } } } /* Features ========================================================================== */ .feature__wrapper { @include clearfix(); margin-bottom: 2em; border-bottom: 1px solid $border-color; .archive__item-title { margin-bottom: 0; } } .feature__item { position: relative; margin-bottom: 2em; font-size: 1.125em; @include breakpoint($small) { float: inline-start; margin-bottom: 0; width: span(4 of 12); &:nth-child(3n + 1) { clear: both; margin-inline-start: 0; } &:nth-child(3n + 2) { clear: none; margin-inline-start: gutter(of 12); } &:nth-child(3n + 3) { clear: none; margin-inline-start: gutter(of 12); } .feature__item-teaser { max-height: 200px; overflow: hidden; } } .archive__item-body { padding-inline: gutter(1 of 12); } a.btn::before { content: ''; position: absolute; inset: 0; } &--left, &--right { position: relative; margin-inline: 0; width: 100%; clear: both; font-size: 1.125em; a.btn::before { content: ''; position: absolute; inset: 0; } .archive__item-teaser { margin-bottom: 2em; } } &--left { float: inline-start; .archive__item { float: inline-start; } @include breakpoint($small) { .archive__item-teaser { float: inline-start; width: span(5 of 12); } .archive__item-body { float: inline-end; width: span(7 of 12); padding-inline-start: gutter(0.5 of 12); padding-inline-end: gutter(1 of 12); } } } &--right { float: inline-end; .archive__item { float: inline-end; } @include breakpoint($small) { text-align: end; .archive__item-teaser { float: inline-end; width: span(5 of 12); } .archive__item-body { float: inline-start; width: span(7 of 12); padding-inline-start: gutter(1 of 12); padding-inline-end: gutter(0.5 of 12); } } } &--center { position: relative; float: inline-start; margin-inline: 0; width: 100%; clear: both; font-size: 1.125em; .archive__item { float: inline-start; width: 100%; } .archive__item-teaser { margin-bottom: 2em; } a.btn::before { content: ''; position: absolute; inset: 0; } @include breakpoint($small) { text-align: center; .archive__item-teaser { margin: 0 auto; width: span(5 of 12); } .archive__item-body { margin: 0 auto; width: span(7 of 12); } } } } /* Place inside an archive layout */ .archive { .feature__wrapper { .archive__item-title { margin-top: 0.25em; font-size: 1em; } } .feature__item, .feature__item--left, .feature__item--center, .feature__item--right { font-size: 1em; } } /* Wide Pages ========================================================================== */ .wide { .archive { @include breakpoint($large) { padding-inline-end: 0; } @include breakpoint($x-large) { padding-inline-end: 0; } } } /* Place inside a single layout */ .layout--single { .feature__wrapper { display: inline-block; } } ================================================ FILE: _sass/minimal-mistakes/_base.scss ================================================ /* ========================================================================== BASE ELEMENTS ========================================================================== */ html { /* sticky footer fix */ position: relative; min-height: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { margin: 0; padding: 0; color: $text-color; font-family: $global-font-family; line-height: 1.5; &.overflow--hidden { /* when primary navigation is visible, the content in the background won't scroll */ overflow: hidden; } } h1, h2, h3, h4, h5, h6 { margin: 2em 0 0.5em; line-height: 1.2; font-family: $header-font-family; font-weight: bold; } h1 { margin-top: 0; font-size: $h-size-1; } h2 { font-size: $h-size-2; } h3 { font-size: $h-size-3; } h4 { font-size: $h-size-4; } h5 { font-size: $h-size-5; } h6 { font-size: $h-size-6; } small, .small { font-size: $type-size-6; } p { margin-bottom: 1.3em; } u, ins { text-decoration: none; border-bottom: 1px solid $text-color; a { color: inherit; } } del a { color: inherit; } /* reduce orphans and widows when printing */ p, pre, blockquote, ul, ol, dl, figure, table, fieldset { orphans: 3; widows: 3; } /* abbreviations */ abbr[title], abbr[data-original-title] { text-decoration: none; cursor: help; border-bottom: 1px dotted $text-color; } /* blockquotes */ blockquote { margin-block: 2em; margin-inline-end: 1em; padding-inline: 1em; font-style: italic; border-inline-start: 0.25em solid $primary-color; cite { font-style: italic; &::before { content: "\2014"; padding-inline-end: 5px; } } } /* links */ a { &:focus { @extend %tab-focus; } &:visited { color: $link-color-visited; } &:hover { color: $link-color-hover; outline: 0; } } /* buttons */ button:focus { @extend %tab-focus; } /* code */ tt, code, kbd, samp, pre { font-family: $monospace; } pre { overflow-x: auto; /* add scrollbars to wide code blocks*/ } /* horizontal rule */ hr { display: block; margin: 1em 0; border: 0; border-top: 1px solid $border-color; } /* lists */ ul li, ol li { margin-bottom: 0.5em; } li ul, li ol { margin-top: 0.5em; } /* Media and embeds ========================================================================== */ /* Figures and images */ figure { display: -webkit-box; display: flex; -webkit-box-pack: justify; justify-content: space-between; -webkit-box-align: start; align-items: flex-start; flex-wrap: wrap; margin: 2em 0; img, iframe, .fluid-width-video-wrapper { margin-bottom: 1em; } img { width: 100%; border-radius: $border-radius; -webkit-transition: $global-transition; transition: $global-transition; } > a { display: block; } &.half { > a, > img { @include breakpoint($small) { width: calc(50% - 0.5em); } } figcaption { width: 100%; } } &.third { > a, > img { @include breakpoint($small) { width: calc(33.3333% - 0.5em); } } figcaption { width: 100%; } } } /* Figure captions */ figcaption { margin-bottom: 0.5em; color: $muted-text-color; font-family: $caption-font-family; font-size: $type-size-6; a { -webkit-transition: $global-transition; transition: $global-transition; &:hover { color: $link-color-hover; } } } /* Fix IE9 SVG bug */ svg:not(:root) { overflow: hidden; } /* Navigation lists ========================================================================== */ /** * Removes margins, padding, and bullet points from navigation lists * * Example usage: * */ nav { ul { margin: 0; padding: 0; } li { list-style: none; } a { text-decoration: none; } /* override white-space for nested lists */ ul li, ol li { margin-bottom: 0; } li ul, li ol { margin-top: 0; } } /* Global animation transition ========================================================================== */ b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser { -webkit-transition: $global-transition; transition: $global-transition; } ================================================ FILE: _sass/minimal-mistakes/_buttons.scss ================================================ /* ========================================================================== BUTTONS ========================================================================== */ /* Default button ========================================================================== */ .btn { /* default */ display: inline-block; margin-bottom: 0.25em; padding: 0.5em 1em; font-family: $sans-serif; font-size: $type-size-6; font-weight: bold; text-align: center; text-decoration: none; border-width: 0; border-radius: $border-radius; cursor: pointer; .icon { margin-inline-end: 0.5em; } .icon + .hidden { margin-inline-start: -0.5em; /* override for hidden text*/ } /* button colors */ $buttoncolors: (primary, $primary-color), (inverse, #fff), (light-outline, transparent), (success, $success-color), (warning, $warning-color), (danger, $danger-color), (info, $info-color), /* brands */ (bluesky, $bluesky-color), (facebook, $facebook-color), (linkedin, $linkedin-color), (mastodon, $mastodon-color), (twitter, $twitter-color), (x, $x-color); @each $buttoncolor, $color in $buttoncolors { &--#{$buttoncolor} { @include yiq-contrasted($color); @if ($buttoncolor == inverse) { border: 1px solid $border-color; } @if ($buttoncolor == light-outline) { border: 1px solid #fff; } &:visited { @include yiq-contrasted($color); } &:hover { @include yiq-contrasted(mix(#000, $color, 20%)); } } } /* fills width of parent container */ &--block { display: block; width: 100%; + .btn--block { margin-top: 0.25em; } } /* disabled */ &--disabled { pointer-events: none; cursor: not-allowed; filter: alpha(opacity=65); box-shadow: none; opacity: 0.65; } /* extra large button */ &--x-large { font-size: $type-size-4; } /* large button */ &--large { font-size: $type-size-5; } /* small button */ &--small { font-size: $type-size-7; } } ================================================ FILE: _sass/minimal-mistakes/_copyright.scss ================================================ /*! * Minimal Mistakes Jekyll Theme 4.28.0 by Michael Rose * Copyright 2013-2026 Michael Rose - mademistakes.com | @mmistakes * Copyright 2024-2026 iBug - ibugone.com | @iBug * Free for personal and commercial use under the MIT license * https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE */ ================================================ FILE: _sass/minimal-mistakes/_footer.scss ================================================ /* ========================================================================== FOOTER ========================================================================== */ .page__footer { @include clearfix; float: inline-start; margin-inline: 0; width: 100%; margin-top: 3em; color: $muted-text-color; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.45s; animation-delay: 0.45s; background-color: $footer-background-color; footer { @include clearfix; margin-inline: auto; margin-top: 2em; max-width: 100%; padding: 0 1em 2em; @include breakpoint($x-large) { max-width: $x-large; } } a { color: inherit; text-decoration: none; &:hover { text-decoration: underline; } } .fas, .fab, .far, .fal { color: $muted-text-color; } } .page__footer-copyright { font-family: $global-font-family; font-size: $type-size-7; } .page__footer-follow { ul { margin: 0; padding: 0; list-style-type: none; } li { display: inline-block; padding-top: 5px; padding-bottom: 5px; font-family: $sans-serif-narrow; font-size: $type-size-6; text-transform: uppercase; } li + li::before { content: ""; padding-inline-end: 5px; } a { padding-inline-end: 10px; font-weight: bold; } .social-icons { a { white-space: nowrap; } } } ================================================ FILE: _sass/minimal-mistakes/_forms.scss ================================================ /* ========================================================================== Forms ========================================================================== */ form { margin-bottom: 5px; padding: 1em; background-color: $form-background-color; fieldset { margin-bottom: 5px; padding: 0; border-width: 0; } legend { display: block; width: 100%; margin-bottom: 5px * 2; margin-inline-start: -7px; padding: 0; color: $text-color; border: 0; white-space: normal; } p { margin-bottom: (5px / 2); } ul { list-style-type: none; margin: 0 0 5px 0; padding: 0; } br { display: none; } } label, input, button, select, textarea { vertical-align: baseline; } input, button, select, textarea { box-sizing: border-box; font-family: $sans-serif; } label { display: block; margin-bottom: 0.25em; color: $text-color; cursor: pointer; small { font-size: $type-size-6; } input, textarea, select { display: block; } } input, textarea, select { display: inline-block; width: 100%; padding: 0.25em; margin-bottom: 0.5em; color: $text-color; background-color: $background-color; border: $border-color; border-radius: $border-radius; box-shadow: $box-shadow; } .input-mini { width: 60px; } .input-small { width: 90px; } input[type="image"], input[type="checkbox"], input[type="radio"] { width: auto; height: auto; padding: 0; margin: 3px 0; line-height: normal; cursor: pointer; border-radius: 0; border: 0 \9; box-shadow: none; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="image"] { border: 0; } input[type="file"] { width: auto; padding: initial; line-height: initial; border: initial; background-color: transparent; background-color: initial; box-shadow: none; } input[type="button"], input[type="reset"], input[type="submit"] { width: auto; height: auto; cursor: pointer; } select { width: auto; background-color: #fff; } select[multiple], select[size] { height: auto; } textarea { resize: vertical; height: auto; overflow: auto; vertical-align: top; } input[type="hidden"] { display: none; } .form { position: relative; } .radio, .checkbox { padding-inline-start: 18px; font-weight: normal; } .radio input[type="radio"], .checkbox input[type="checkbox"] { float: inline-start; margin-inline-start: -18px; } .radio.inline, .checkbox.inline { display: inline-block; padding-top: 5px; margin-bottom: 0; vertical-align: middle; } .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline { margin-inline-start: 10px; } /* Disabled state ========================================================================== */ input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] { opacity: 0.5; cursor: not-allowed; } /* Focus & active state ========================================================================== */ input:focus, textarea:focus { border-color: $primary-color; outline: 0; outline: thin dotted \9; box-shadow: inset 0 1px 3px rgba($text-color, 0.06), 0 0 5px rgba($primary-color, 0.7); } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus { box-shadow: none; } /* Help text ========================================================================== */ .help-block, .help-inline { color: $muted-text-color; } .help-block { display: block; margin-bottom: 1em; line-height: 1em; } .help-inline { display: inline-block; vertical-align: middle; padding-inline-start: 5px; } /* .form-group ========================================================================== */ .form-group { margin-bottom: 5px; padding: 0; border-width: 0; } /* .form-inline ========================================================================== */ .form-inline input, .form-inline textarea, .form-inline select { display: inline-block; margin-bottom: 0; } .form-inline label { display: inline-block; } .form-inline .radio, .form-inline .checkbox, .form-inline .radio { padding-inline-start: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { float: inline-start; margin-inline-start: 0; margin-inline-end: 3px; } /* .form-search ========================================================================== */ .form-search input, .form-search textarea, .form-search select { display: inline-block; margin-bottom: 0; } .form-search .search-query { padding-inline: 14px; margin-bottom: 0; border-radius: 14px; } .form-search label { display: inline-block; } .form-search .radio, .form-search .checkbox, .form-inline .radio { padding-inline-start: 0; margin-bottom: 0; vertical-align: middle; } .form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"] { float: inline-start; margin-inline-start: 0; margin-inline-end: 3px; } /* .form--loading ========================================================================== */ .form--loading::before { content: ""; } .form--loading .form__spinner { display: block; } .form::before { position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.7); z-index: 10; } .form__spinner { display: none; position: absolute; top: 50%; inset-inline-start: 50%; z-index: 11; } ================================================ FILE: _sass/minimal-mistakes/_masthead.scss ================================================ /* ========================================================================== MASTHEAD ========================================================================== */ .masthead { position: relative; border-bottom: 1px solid $border-color; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.15s; animation-delay: 0.15s; z-index: 20; &__inner-wrap { @include clearfix; margin-inline: auto; padding: 1em; max-width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; font-family: $sans-serif-narrow; @include breakpoint($x-large) { max-width: $max-width; } nav { z-index: 10; } a { text-decoration: none; } } } .site-logo img { max-height: 2rem; } .site-title { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-item-align: center; align-self: center; font-weight: bold; // z-index: 20; } .site-subtitle { display: block; font-size: $type-size-8; } .masthead__menu { float: inline-start; margin-inline: 0; width: 100%; clear: both; .site-nav { margin-inline-start: 0; @include breakpoint($small) { float: inline-end; } } ul { margin: 0; padding: 0; clear: both; list-style-type: none; } } .masthead__menu-item { display: block; list-style-type: none; white-space: nowrap; &--lg { padding-inline-end: 2em; font-weight: 700; } } ================================================ FILE: _sass/minimal-mistakes/_mixins.scss ================================================ /* ========================================================================== MIXINS ========================================================================== */ %tab-focus { /* Default*/ outline: thin dotted $focus-color; /* Webkit*/ outline: 5px auto $focus-color; outline-offset: -2px; } /* em function ========================================================================== */ @function em($target, $context: $doc-font-size) { @return ($target / $context) * 1em; } /* Bourbon clearfix ========================================================================== */ /* * Provides an easy way to include a clearfix for containing floats. * link http://cssmojo.com/latest_new_clearfix_so_far/ * * example scss - Usage * * .element { * @include clearfix; * } * * example css - CSS Output * * .element::after { * clear: both; * content: ""; * display: table; * } */ @mixin clearfix { clear: both; &::after { clear: both; content: ""; display: table; } } /* Compass YIQ Color Contrast https://github.com/easy-designs/yiq-color-contrast ========================================================================== */ @function yiq-is-light( $color, $threshold: $yiq-contrasted-threshold ) { $red: red($color); $green: green($color); $blue: blue($color); $yiq: (($red*299)+($green*587)+($blue*114))/1000; @if $yiq-debug { @debug $yiq, $threshold; } @return if($yiq >= $threshold, true, false); } @function yiq-contrast-color( $color, $dark: $yiq-contrasted-dark-default, $light: $yiq-contrasted-light-default, $threshold: $yiq-contrasted-threshold ) { @return if(yiq-is-light($color, $threshold), $yiq-contrasted-dark-default, $yiq-contrasted-light-default); } @mixin yiq-contrasted( $background-color, $dark: $yiq-contrasted-dark-default, $light: $yiq-contrasted-light-default, $threshold: $yiq-contrasted-threshold ) { background-color: $background-color; color: yiq-contrast-color($background-color, $dark, $light, $threshold); } ================================================ FILE: _sass/minimal-mistakes/_navigation.scss ================================================ /* ========================================================================== NAVIGATION ========================================================================== */ /* Breadcrumb navigation links ========================================================================== */ .breadcrumbs { @include clearfix; margin: 0 auto; max-width: 100%; padding-inline: 1em; font-family: $sans-serif; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.3s; animation-delay: 0.3s; @include breakpoint($x-large) { max-width: $x-large; } ol { padding: 0; list-style: none; font-size: $type-size-6; @include breakpoint($large) { float: inline-end; width: calc(100% - #{$right-sidebar-width-narrow}); } @include breakpoint($x-large) { width: calc(100% - #{$right-sidebar-width}); } } li { display: inline; } .current { font-weight: bold; } } /* Post pagination navigation links ========================================================================== */ .pagination { @include clearfix(); float: inline-start; margin-top: 1em; padding-top: 1em; width: 100%; ul { margin: 0; padding: 0; list-style-type: none; font-family: $sans-serif; } li { display: block; float: inline-start; margin-inline-start: -1px; a { display: block; margin-bottom: 0.25em; padding: 0.5em 1em; font-family: $sans-serif; font-size: 14px; font-weight: bold; line-height: 1.5; text-align: center; text-decoration: none; color: $muted-text-color; border: 1px solid mix(#000, $border-color, 25%); border-radius: 0; &:hover { color: $link-color-hover; } &.current, &.current.disabled { color: #fff; background: $primary-color; } &.disabled { color: rgba($muted-text-color, 0.5); pointer-events: none; cursor: not-allowed; } } &:first-child { margin-inline-start: 0; a { border-start-start-radius: $border-radius; border-end-start-radius: $border-radius; } } &:last-child { a { border-start-end-radius: $border-radius; border-end-end-radius: $border-radius; } } } /* next/previous buttons */ &--pager { display: block; padding: 1em 2em; float: inline-start; width: 50%; font-family: $sans-serif; font-size: $type-size-5; font-weight: bold; text-align: center; text-decoration: none; color: $muted-text-color; border: 1px solid mix(#000, $border-color, 25%); border-radius: $border-radius; &:hover { @include yiq-contrasted($muted-text-color); } &:first-child { border-start-end-radius: 0; border-end-end-radius: 0; } &:last-child { margin-inline-start: -1px; border-start-start-radius: 0; border-end-start-radius: 0; } &.disabled { color: rgba($muted-text-color, 0.5); pointer-events: none; cursor: not-allowed; } } } .page__content + .pagination, .page__meta + .pagination, .page__share + .pagination, .page__comments + .pagination { margin-top: 2em; padding-top: 2em; border-top: 1px solid $border-color; } /* Priority plus navigation ========================================================================== */ .greedy-nav { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: $nav-height; background: $background-color; a { display: block; margin: 0 1rem; color: $masthead-link-color; text-decoration: none; -webkit-transition: none; transition: none; &:hover { color: $masthead-link-color-hover; } &.site-logo { margin-inline-start: 0; margin-inline-end: 0.5rem; } &.site-title { margin-inline-start: 0; } } img { -webkit-transition: none; transition: none; } &__toggle { -ms-flex-item-align: center; align-self: center; height: $nav-toggle-height; border: 0; outline: none; background-color: transparent; cursor: pointer; } .visible-links { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; overflow: hidden; li { -webkit-box-flex: 0; -ms-flex: none; flex: none; } a { position: relative; &:before { content: ""; position: absolute; inset-inline-start: 0; bottom: 0; height: 4px; background: $primary-color; width: 100%; -webkit-transition: $global-transition; transition: $global-transition; -webkit-transform: scaleX(0) translate3d(0, 0, 0); transform: scaleX(0) translate3d(0, 0, 0); // hide } &:hover:before { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); // reveal } } } .hidden-links { position: absolute; top: 100%; inset-inline-end: 0; margin-top: 15px; padding: 5px; border: 1px solid $border-color; border-radius: $border-radius; background: $background-color; -webkit-box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12); box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12); &.hidden { display: none; } a { margin: 0; padding: 10px 20px; font-size: $type-size-5; &:hover { color: $masthead-link-color-hover; background: $navicon-link-color-hover; } } &::before { content: ""; position: absolute; top: -11px; inset-inline-end: 10px; width: 0; border-style: solid; border-width: 0 10px 10px; border-color: $border-color transparent; display: block; z-index: 0; } &::after { content: ""; position: absolute; top: -10px; inset-inline-end: 10px; width: 0; border-style: solid; border-width: 0 10px 10px; border-color: $background-color transparent; display: block; z-index: 1; } li { display: block; border-bottom: 1px solid $border-color; &:last-child { border-bottom: none; } } } } .no-js { .greedy-nav { .visible-links { -ms-flex-wrap: wrap; flex-wrap: wrap; overflow: visible; } } } /* Navigation list ========================================================================== */ .nav__list { margin-bottom: 1.5em; input[type="checkbox"], label { display: none; } @include breakpoint(max-width $large - 1px) { label { position: relative; display: inline-block; padding: 0.5em 2.5em 0.5em 1em; color: $gray; font-size: $type-size-6; font-weight: bold; border: 1px solid $light-gray; border-radius: $border-radius; z-index: 20; -webkit-transition: 0.2s ease-out; transition: 0.2s ease-out; cursor: pointer; &::before, &::after { content: ""; position: absolute; inset-inline-end: 1em; top: 1.25em; width: 0.75em; height: 0.125em; line-height: 1; background-color: $gray; -webkit-transition: 0.2s ease-out; transition: 0.2s ease-out; } &:after { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } &:hover { color: #fff; border-color: $gray; background-color: mix(white, #000, 20%); &:before, &:after { background-color: #fff; } } } /* selected*/ input:checked + label { color: white; background-color: mix(white, #000, 20%); &:before, &:after { background-color: #fff; } } /* on hover show expand*/ label:hover:after { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } input:checked + label:hover:after { -webkit-transform: rotate(0); -ms-transform: rotate(0); transform: rotate(0); } ul { margin-bottom: 1em; } a { display: block; padding: 0.25em 0; @include breakpoint($large) { padding-top: 0.125em; padding-bottom: 0.125em; } &:hover { text-decoration: underline; } } } } .nav__list .nav__items { margin: 0; font-size: 1.25rem; a { color: inherit; } .active { margin-inline-start: -0.5em; padding-inline: 0.5em; font-weight: bold; } @include breakpoint(max-width $large - 1px) { position: relative; max-height: 0; opacity: 0%; overflow: hidden; z-index: 10; -webkit-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; -webkit-transform: translate(0, 10%); -ms-transform: translate(0, 10%); transform: translate(0, 10%); } } @include breakpoint(max-width $large - 1px) { .nav__list input:checked ~ .nav__items { -webkit-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; max-height: 9999px; /* exaggerate max-height to accommodate tall lists*/ overflow: visible; opacity: 1; margin-top: 1em; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } } .nav__title { margin: 0; padding: 0.5rem 0.75rem; font-family: $sans-serif-narrow; font-size: $type-size-5; font-weight: bold; } .nav__sub-title { display: block; margin: 0.5rem 0; padding: 0.25rem 0; font-family: $sans-serif-narrow; font-size: $type-size-6; font-weight: bold; text-transform: uppercase; border-bottom: 1px solid $border-color; } /* Table of contents navigation ========================================================================== */ .toc { font-family: $sans-serif-narrow; color: $gray; background-color: $background-color; border: 1px solid $border-color; border-radius: $border-radius; -webkit-box-shadow: $box-shadow; box-shadow: $box-shadow; .nav__title { color: #fff; font-size: $type-size-6; background: $primary-color; border-start-start-radius: $border-radius; border-start-end-radius: $border-radius; } // Scrollspy marks toc items as .active when they are in focus .active a { @include yiq-contrasted($active-color); } } .toc__menu { margin: 0; padding: 0; width: 100%; list-style: none; font-size: $type-size-6; @include breakpoint($large) { font-size: $type-size-7; } a { display: block; padding: 0.25rem 0.75rem; color: $muted-text-color; font-weight: bold; line-height: 1.5; border-bottom: 1px solid $border-color; &:hover { color: $text-color; } } li ul > li a { padding-inline-start: 1.25rem; font-weight: normal; } li ul li ul > li a { padding-inline-start: 1.75rem; } li ul li ul li ul > li a { padding-inline-start: 2.25rem; } li ul li ul li ul li ul > li a { padding-inline-start: 2.75rem; } li ul li ul li ul li ul li ul > li a { padding-inline-start: 3.25rem; } } ================================================ FILE: _sass/minimal-mistakes/_notices.scss ================================================ /* ========================================================================== NOTICE TEXT BLOCKS ========================================================================== */ /** * Default Kramdown usage (no indents!): *
* #### Headline for the Notice * Text for the notice *
*/ @mixin notice($notice-color) { margin: 2em 0 !important; /* override*/ padding: 1em; color: $text-color; font-family: $global-font-family; font-size: $type-size-6 !important; text-indent: initial; /* override*/ background-color: mix($background-color, $notice-color, $notice-background-mix); border-radius: $border-radius; box-shadow: 0 1px 1px rgba($notice-color, 0.25); h4 { margin-top: 0 !important; /* override*/ margin-bottom: 0.75em; line-height: inherit; } @at-root .page__content #{&} h4 { /* using at-root to override .page-content h4 font size*/ margin-bottom: 0; font-size: 1em; } p { &:last-child { margin-bottom: 0 !important; /* override*/ } } h4 + p { /* remove space above paragraphs that appear directly after notice headline*/ margin-top: 0; padding-top: 0; } a { color: mix(#000, $notice-color, 10%); &:hover { color: mix(#000, $notice-color, 50%); } } @at-root #{selector-unify(&, "blockquote")} { border-inline-start-color: mix(#000, $notice-color, 10%); } code { background-color: mix($background-color, $notice-color, $code-notice-background-mix) } pre code { background-color: inherit; } ul { &:last-child { margin-bottom: 0; /* override*/ } } } /* Default notice */ .notice, .markdown-alert { @include notice($light-gray); } /* Primary notice */ .notice--primary, .markdown-alert-important { @include notice($primary-color); } /* Info notice */ .notice--info, .markdown-alert-note { @include notice($info-color); } /* Warning notice */ .notice--warning, .markdown-alert-warning { @include notice($warning-color); } /* Success notice */ .notice--success, .markdown-alert-tip { @include notice($success-color); } /* Danger notice */ .notice--danger, .markdown-alert-caution { @include notice($danger-color); } ================================================ FILE: _sass/minimal-mistakes/_page.scss ================================================ /* ========================================================================== SINGLE PAGE/POST ========================================================================== */ #main { @include clearfix; margin-inline: auto; padding-inline: 1em; -webkit-animation: $intro-transition; animation: $intro-transition; max-width: 100%; -webkit-animation-delay: 0.15s; animation-delay: 0.15s; @include breakpoint($x-large) { max-width: $max-width; } } body { display: -webkit-box; display: -ms-flexbox; display: flex; min-height: 100vh; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .initial-content, .search-content { flex: 1 0 auto; } .page { @include breakpoint($large) { float: inline-end; width: calc(100% - #{$right-sidebar-width-narrow}); padding-inline-end: $right-sidebar-width-narrow; } @include breakpoint($x-large) { width: calc(100% - #{$right-sidebar-width}); padding-inline-end: $right-sidebar-width; } .page__inner-wrap { float: inline-start; margin-top: 1em; margin-inline: 0; width: 100%; clear: both; .page__content, .page__meta, .page__share { position: relative; float: inline-start; margin-inline: 0; width: 100%; clear: both; } } } .page__title { margin-top: 0; line-height: 1; a { color: $text-color; text-decoration: none; } & + .page__meta { margin-top: -0.5em; } } .page__lead { font-family: $global-font-family; font-size: $type-size-4; } .page__content { h2 { padding-bottom: 0.5em; border-bottom: 1px solid $border-color; } h1, h2, h3, h4, h5, h6 { .header-link { position: relative; inset-inline-start: 0.5em; opacity: 0; font-size: 0.8em; -webkit-transition: opacity 0.2s ease-in-out 0.1s; -moz-transition: opacity 0.2s ease-in-out 0.1s; -o-transition: opacity 0.2s ease-in-out 0.1s; transition: opacity 0.2s ease-in-out 0.1s; } &:hover .header-link { opacity: 1; } } p, li, dl { font-size: 1em; } /* paragraph indents */ p { margin: 0 0 $indent-var; /* sibling indentation*/ @if $paragraph-indent == true { & + p { text-indent: $indent-var; margin-top: -($indent-var); } } } a:not(.btn) { &:hover { text-decoration: underline; img { box-shadow: 0 0 10px rgba(#000, 0.25); } } } :not(pre) > code { padding-top: 0.1rem; padding-bottom: 0.1rem; font-size: 0.8em; background: $code-background-color; border-radius: $border-radius; &::before, &::after { letter-spacing: -0.2em; content: "\00a0"; /* non-breaking space*/ } } dt { margin-top: 1em; font-family: $sans-serif; font-weight: bold; } dd { margin-inline-start: 1em; font-family: $sans-serif; font-size: $type-size-6; } .small { font-size: $type-size-6; } /* blockquote citations */ blockquote + .small { margin-top: -1.5em; padding-inline-start: 1.25rem; } /* vertical alignment for first content */ :first-child, aside + :nth-child(2) { margin-top: 0em; } } .page__hero { position: relative; margin-bottom: 2em; @include clearfix; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.25s; animation-delay: 0.25s; &--overlay { position: relative; margin-bottom: 2em; padding: 3em 0; @include clearfix; background-size: cover; background-repeat: no-repeat; background-position: center; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.25s; animation-delay: 0.25s; a { color: #fff; } .wrapper { padding-inline: 1em; @include breakpoint($x-large) { max-width: $x-large; } } .page__title, .page__meta, .page__lead, .btn { color: #fff; text-shadow: 1px 1px 4px rgba(#000, 0.5); } .page__lead { max-width: $medium; } .page__title { font-size: $type-size-2; @include breakpoint($small) { font-size: $type-size-1; } } } } .page__hero-image { width: 100%; height: auto; -ms-interpolation-mode: bicubic; } .page__hero-caption { position: absolute; bottom: 0; inset-inline-end: 0; margin: 0 auto; padding: 2px 5px; color: #fff; font-family: $caption-font-family; font-size: $type-size-7; background: #000; text-align: end; z-index: 5; opacity: 0.5; border-radius: $border-radius 0 0 0; @include breakpoint($large) { padding: 5px 10px; } a { color: #fff; text-decoration: none; } } /* Social sharing ========================================================================== */ .page__share { margin-top: 2em; padding-top: 1em; border-top: 1px solid $border-color; @include breakpoint(max-width $small) { .btn span { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } } } .page__share-title { margin-bottom: 10px; font-size: $type-size-6; text-transform: uppercase; } /* Page meta ========================================================================== */ .page__meta { margin-top: 2em; color: $muted-text-color; font-family: $sans-serif; font-size: $type-size-6; p { margin: 0; } a { color: inherit; } } .page__meta-title { margin-bottom: 10px; font-size: $type-size-6; text-transform: uppercase; } .page__meta-sep::before { content: "\2022"; padding-inline: 0.5em; } /* Page taxonomy ========================================================================== */ .page__taxonomy { .sep { display: none; } strong { margin-inline-end: 10px; } } .page__taxonomy-item { display: inline-block; margin-inline-end: 5px; margin-bottom: 8px; padding: 5px 10px; text-decoration: none; border: 1px solid mix(#000, $border-color, 25%); border-radius: $border-radius; &:hover { text-decoration: none; color: $link-color-hover; } } .taxonomy__section { margin-bottom: 2em; padding-bottom: 1em; &:not(:last-child) { border-bottom: solid 1px $border-color; } .archive__item-title { margin-top: 0; } .archive__subtitle { clear: both; border: 0; } + .taxonomy__section { margin-top: 2em; } } .taxonomy__title { margin-bottom: 0.5em; color: $muted-text-color; } .taxonomy__count { color: $muted-text-color; } .taxonomy__index { display: grid; grid-column-gap: 2em; grid-template-columns: repeat(2, 1fr); margin: 1.414em 0; padding: 0; font-size: 0.75em; list-style: none; @include breakpoint($large) { grid-template-columns: repeat(3, 1fr); } a { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0.25em 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; color: inherit; text-decoration: none; border-bottom: 1px solid $border-color; } } .back-to-top { display: block; clear: both; color: $muted-text-color; font-size: 0.6em; text-transform: uppercase; text-align: end; text-decoration: none; } /* Comments ========================================================================== */ .page__comments { float: inline-start; margin-inline: 0; width: 100%; clear: both; } .page__comments-title { margin-top: 2rem; margin-bottom: 10px; padding-top: 2rem; font-size: $type-size-6; border-top: 1px solid $border-color; text-transform: uppercase; } .page__comments-form { -webkit-transition: $global-transition; transition: $global-transition; &.disabled { input, button, textarea, label { pointer-events: none; cursor: not-allowed; filter: alpha(opacity=65); box-shadow: none; opacity: 0.65; } } } .comment { @include clearfix(); margin: 1em 0; &:not(:last-child) { border-bottom: 1px solid $border-color; } } .comment__avatar-wrapper { float: inline-start; width: 60px; height: 60px; @include breakpoint($large) { width: 100px; height: 100px; } } .comment__avatar { width: 40px; height: 40px; border-radius: 50%; @include breakpoint($large) { width: 80px; height: 80px; padding: 5px; border: 1px solid $border-color; } } .comment__content-wrapper { float: inline-end; width: calc(100% - 60px); @include breakpoint($large) { width: calc(100% - 100px); } } .comment__author { margin: 0; a { text-decoration: none; } } .comment__date { @extend .page__meta; margin: 0; a { text-decoration: none; } } /* Related ========================================================================== */ .page__related { @include clearfix(); float: inline-start; margin-top: 2em; padding-top: 1em; border-top: 1px solid $border-color; @include breakpoint($large) { float: inline-end; width: calc(100% - #{$right-sidebar-width-narrow}); } @include breakpoint($x-large) { width: calc(100% - #{$right-sidebar-width}); } a { color: inherit; text-decoration: none; } } .page__related-title { margin-bottom: 10px; font-size: $type-size-6; text-transform: uppercase; } /* Wide Pages ========================================================================== */ .wide { .page, .page__related { @include breakpoint($large) { padding-inline-end: 0; } @include breakpoint($x-large) { padding-inline-end: 0; } } } ================================================ FILE: _sass/minimal-mistakes/_print.scss ================================================ /* ========================================================================== PRINT STYLES ========================================================================== */ @media print { [hidden] { display: none; } * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html { margin: 0; padding: 0; min-height: auto !important; font-size: 16px; } body { margin: 0 auto; background: #fff !important; color: #000 !important; font-size: 1rem; line-height: 1.5; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } h1, h2, h3, h4, h5, h6 { color: #000; line-height: 1.2; margin-bottom: 0.75rem; margin-top: 0; } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.75rem; } h4 { font-size: 1.5rem; } h5 { font-size: 1.25rem; } h6 { font-size: 1rem; } a, a:visited { color: #000; text-decoration: underline; word-wrap: break-word; } table { border-collapse: collapse; } thead { display: table-header-group; } table, th, td { border-bottom: 1px solid #000; } td, th { padding: 8px 16px; } img { border: 0; display: block; max-width: 100% !important; vertical-align: middle; } hr { border: 0; border-bottom: 2px solid #bbb; height: 0; margin: 2.25rem 0; padding: 0; } dt { font-weight: bold; } dd { margin: 0; margin-bottom: 0.75rem; } abbr[title], acronym[title] { border: 0; text-decoration: none; } table, blockquote, pre, code, figure, li, hr, ul, ol, a, tr { page-break-inside: avoid; } h2, h3, h4, p, a { orphans: 3; widows: 3; } h1, h2, h3, h4, h5, h6 { page-break-after: avoid; page-break-inside: avoid; } h1 + p, h2 + p, h3 + p { page-break-before: avoid; } img { page-break-after: auto; page-break-before: auto; page-break-inside: avoid; } pre { white-space: pre-wrap !important; word-wrap: break-word; } a[href^='http://']:after, a[href^='https://']:after, a[href^='ftp://']:after { content: " (" attr(href) ")"; font-size: 80%; } abbr[title]:after, acronym[title]:after { content: " (" attr(title) ")"; } #main { max-width: 100%; } .page { margin: 0; padding: 0; width: 100%; } .page-break, .page-break-before { page-break-before: always; } .page-break-after { page-break-after: always; } .no-print { display: none; } a.no-reformat:after { content: ''; } abbr[title].no-reformat:after, acronym[title].no-reformat:after { content: ''; } .page__hero-caption { color: #000 !important; background: #fff !important; opacity: 1; a { color: #000 !important; } } /* Hide the following elements on print ========================================================================== */ .masthead, .toc, .page__share, .page__related, .pagination, .ads, .page__footer, .page__comments-form, .author__avatar, .author__content, .author__urls-wrapper, .nav__list, .sidebar, .adsbygoogle { display: none !important; height: 1px !important; } } ================================================ FILE: _sass/minimal-mistakes/_reset.scss ================================================ /* ========================================================================== STYLE RESETS ========================================================================== */ * { box-sizing: border-box; } html { /* apply a natural box layout model to all elements */ box-sizing: border-box; background-color: $background-color; font-size: $doc-font-size; @include breakpoint($medium) { font-size: $doc-font-size-medium; } @include breakpoint($large) { font-size: $doc-font-size-large; } @include breakpoint($x-large) { font-size: $doc-font-size-x-large; } -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } /* Remove margin */ body { margin: 0; } /* Selected elements */ ::-moz-selection { color: #fff; background: #000; } ::selection { color: #fff; background: #000; } /* Display HTML5 elements in IE6-9 and FF3 */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } /* Display block in IE6-9 and FF3 */ audio, canvas, video { display: inline-block; } /* Prevents modern browsers from displaying 'audio' without controls */ audio:not([controls]) { display: none; } a { color: $link-color; } /* Apply focus state */ a:focus { @extend %tab-focus; } /* Remove outline from links */ a:hover, a:active { outline: 0; } /* Prevent sub and sup affecting line-height in all browsers */ sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* img border in anchor's and image quality */ img { /* Responsive images (ensure images don't scale beyond their parents) */ max-width: 100%; /* part 1: Set a maximum relative to the parent*/ width: auto\9; /* IE7-8 need help adjusting responsive images*/ height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/ vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } /* Prevent max-width from affecting Google Maps */ #map_canvas img, .google-maps img { max-width: none; } /* Consistent form font size in all browsers, margin changes, misc */ button, input, select, textarea { margin: 0; font-size: 100%; vertical-align: middle; } button, input { line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/ } button::-moz-focus-inner, input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/ padding: 0; border: 0; } button, html input[type="button"], // avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/ cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/ } label, select, button, input[type="button"], input[type="reset"], input[type="submit"], input[type="radio"], input[type="checkbox"] { cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/ } input[type="search"] { /* Appearance in Safari/Chrome*/ box-sizing: border-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/ } textarea { overflow: auto; /* remove vertical scrollbar in IE6-9*/ vertical-align: top; /* readability and alignment cross-browser*/ } ================================================ FILE: _sass/minimal-mistakes/_search.scss ================================================ /* ========================================================================== SEARCH ========================================================================== */ .layout--search { .archive__item-teaser { margin-bottom: 0.25em; } } .search__toggle { margin-inline: 1rem; height: $nav-toggle-height; border: 0; outline: none; color: $primary-color; background-color: transparent; cursor: pointer; -webkit-transition: 0.2s; transition: 0.2s; &:hover { color: mix(#000, $primary-color, 25%); } } .search-icon { width: 100%; height: 100%; } .search-content { display: none; visibility: hidden; padding-top: 1em; padding-bottom: 1em; &__inner-wrap { width: 100%; margin-inline: auto; padding-inline: 1em; -webkit-animation: $intro-transition; animation: $intro-transition; -webkit-animation-delay: 0.15s; animation-delay: 0.15s; @include breakpoint($x-large) { max-width: $max-width; } } &__form { background-color: transparent; } .search-input { display: block; margin-bottom: 0; padding: 0; border: none; outline: none; box-shadow: none; background-color: transparent; font-size: $type-size-3; @include breakpoint($large) { font-size: $type-size-2; } @include breakpoint($x-large) { font-size: $type-size-1; } } &.is--visible { display: block; visibility: visible; &::after { content: ""; display: block; } } .results__found { margin-top: 0.5em; font-size: $type-size-6; } .archive__item { margin-bottom: 2em; @include breakpoint($large) { width: 75%; } @include breakpoint($x-large) { width: 50%; } } .archive__item-title { margin-top: 0; } .archive__item-excerpt { margin-bottom: 0; } } /* Algolia search */ .ais-search-box { max-width: 100% !important; margin-bottom: 2em; } .archive__item-title .ais-Highlight { color: $primary-color; font-style: normal; text-decoration: underline; } .archive__item-excerpt .ais-Highlight { color: $primary-color; font-style: normal; font-weight: bold; } ================================================ FILE: _sass/minimal-mistakes/_sidebar.scss ================================================ /* ========================================================================== SIDEBAR ========================================================================== */ /* Default ========================================================================== */ .sidebar { @include clearfix(); // @include breakpoint(max-width $large) { // /* fix z-index order of follow links */ // position: relative; // z-index: 10; // -webkit-transform: translate3d(0, 0, 0); // transform: translate3d(0, 0, 0); // } @include breakpoint($large) { float: inline-start; width: calc(#{$right-sidebar-width-narrow} - 1em); opacity: 0.75; -webkit-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; &:hover { opacity: 1; } &.sticky { overflow-y: auto; /* calculate height of nav list viewport height - nav height - masthead x-padding */ max-height: calc(100vh - #{$nav-height} - 2em); } } @include breakpoint($x-large) { width: calc(#{$right-sidebar-width} - 1em); } > * { margin-top: 1em; margin-bottom: 1em; } h2, h3, h4, h5, h6 { margin-bottom: 0; font-family: $sans-serif-narrow; } p, li { font-family: $sans-serif; font-size: $type-size-6; line-height: 1.5; } img { width: 100%; &.emoji { width: 20px; height: 20px; } } } .sidebar__right { margin-bottom: 1em; @include breakpoint($large) { position: absolute; top: 0; inset-inline-end: 0; width: $right-sidebar-width-narrow; margin-inline-end: -1 * $right-sidebar-width-narrow; padding-inline-start: 1em; z-index: 10; &.sticky { @include clearfix(); position: -webkit-sticky; position: sticky; top: 2em; float: inline-end; .toc { .toc__menu { overflow-y: auto; max-height: calc(100vh - 7em); } } } } @include breakpoint($x-large) { width: $right-sidebar-width; margin-inline-end: -1 * $right-sidebar-width; } } .splash .sidebar__right { @include breakpoint($large) { position: relative; float: inline-end; margin-inline-end: 0; } @include breakpoint($x-large) { margin-inline-end: 0; } } /* Author profile and links ========================================================================== */ .author__avatar { display: table-cell; vertical-align: top; width: 36px; height: 36px; @include breakpoint($large) { display: block; width: auto; height: auto; } img { max-width: 110px; border-radius: 50%; @include breakpoint($large) { padding: 5px; border: 1px solid $border-color; } } } .author__content { display: table-cell; vertical-align: top; padding-inline: 15px 25px; line-height: 1; @include breakpoint($large) { display: block; width: 100%; padding-inline: 0; } a { color: inherit; text-decoration: none; } } .author__name { margin: 0; @include breakpoint($large) { margin-top: 10px; margin-bottom: 10px; } } .sidebar .author__name { font-family: $sans-serif; font-size: $type-size-5; } .author__bio { margin: 0; @include breakpoint($large) { margin-top: 10px; margin-bottom: 20px; } } .author__urls-wrapper { position: relative; display: table-cell; vertical-align: middle; font-family: $sans-serif; z-index: 20; cursor: pointer; li:last-child { a { margin-bottom: 0; } } .author__urls { span.label { padding-inline-start: 5px; } } @include breakpoint($large) { display: block; } button { position: relative; margin-bottom: 0; &:before { @supports (pointer-events: none) { content: ''; position: fixed; top: 0; inset-inline-start: 0; width: 100%; height: 100%; pointer-events: none; } } &.open { &:before { pointer-events: auto; } } @include breakpoint($large) { display: none; } } } .author__urls { display: none; position: absolute; inset-inline-end: 0; margin-top: 15px; padding: 10px; list-style-type: none; border: 1px solid $border-color; border-radius: $border-radius; background: $background-color; box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12); cursor: default; &.is--visible { display: block; } @include breakpoint($large) { display: block; position: relative; margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; } &::before { display: block; content: ""; position: absolute; top: -11px; inset-inline-start: calc(50% - 10px); width: 0; border-style: solid; border-width: 0 10px 10px; border-color: $border-color transparent; z-index: 0; @include breakpoint($large) { display: none; } } &:after { display: block; content: ""; position: absolute; top: -10px; inset-inline-start: calc(50% - 10px); width: 0; border-style: solid; border-width: 0 10px 10px; border-color: $background-color transparent; z-index: 1; @include breakpoint($large) { display: none; } } ul { padding: 10px; list-style-type: none; } li { white-space: nowrap; } a { display: block; margin-bottom: 5px; padding-block: 2px; padding-inline-end: 5px; color: inherit; font-size: $type-size-5; text-decoration: none; &:hover { text-decoration: underline; } } } /* Wide Pages ========================================================================== */ .wide .sidebar__right { margin-bottom: 1em; @include breakpoint($large) { position: initial; top: initial; inset-inline-end: initial; width: initial; margin-inline-end: initial; padding-inline-start: initial; z-index: initial; &.sticky { float: none; } } @include breakpoint($x-large) { width: initial; margin-inline-end: initial; } } ================================================ FILE: _sass/minimal-mistakes/_syntax.scss ================================================ /* ========================================================================== Syntax highlighting ========================================================================== */ div.highlighter-rouge, figure.highlight { position: relative; margin-bottom: 1em; background: $base00; color: $base05; font-family: $monospace; font-size: $type-size-6; line-height: 1.8; border-radius: $border-radius; [dir=rtl] & { direction: ltr; text-align: start; } > pre, pre.highlight { margin: 0; padding: 1em; } } .highlight table { margin-bottom: 0; font-size: 1em; border: 0; td { padding: 0; width: calc(100% - 1em); border: 0; /* line numbers*/ &.gutter, &.rouge-gutter { padding-inline-end: 1em; width: 1em; color: $base04; border-inline-end: 1px solid $base04; text-align: end; } /* code */ &.code, &.rouge-code { padding-inline-start: 1em; } } pre { margin: 0; } } .highlight pre { width: 100%; } .highlight .hll { background-color: $base06; } .highlight { .c { /* Comment */ color: $base04; } .err { /* Error */ color: $base08; } .k { /* Keyword */ color: $base0e; } .l { /* Literal */ color: $base09; } .n { /* Name */ color: $base05; } .o { /* Operator */ color: $base0c; } .p { /* Punctuation */ color: $base05; } .cm { /* Comment.Multiline */ color: $base04; } .cp { /* Comment.Preproc */ color: $base04; } .c1 { /* Comment.Single */ color: $base04; } .cs { /* Comment.Special */ color: $base04; } .gd { /* Generic.Deleted */ color: $base08; } .ge { /* Generic.Emph */ font-style: italic; } .gh { /* Generic.Heading */ color: $base05; font-weight: bold; } .gi { /* Generic.Inserted */ color: $base0b; } .gp { /* Generic.Prompt */ color: $base04; font-weight: bold; } .gs { /* Generic.Strong */ font-weight: bold; } .gu { /* Generic.Subheading */ color: $base0c; font-weight: bold; } .kc { /* Keyword.Constant */ color: $base0e; } .kd { /* Keyword.Declaration */ color: $base0e; } .kn { /* Keyword.Namespace */ color: $base0c; } .kp { /* Keyword.Pseudo */ color: $base0e; } .kr { /* Keyword.Reserved */ color: $base0e; } .kt { /* Keyword.Type */ color: $base0a; } .ld { /* Literal.Date */ color: $base0b; } .m { /* Literal.Number */ color: $base09; } .s { /* Literal.String */ color: $base0b; } .na { /* Name.Attribute */ color: $base0d; } .nb { /* Name.Builtin */ color: $base05; } .nc { /* Name.Class */ color: $base0a; } .no { /* Name.Constant */ color: $base08; } .nd { /* Name.Decorator */ color: $base0c; } .ni { /* Name.Entity */ color: $base05; } .ne { /* Name.Exception */ color: $base08; } .nf { /* Name.Function */ color: $base0d; } .nl { /* Name.Label */ color: $base05; } .nn { /* Name.Namespace */ color: $base0a; } .nx { /* Name.Other */ color: $base0d; } .py { /* Name.Property */ color: $base05; } .nt { /* Name.Tag */ color: $base0c; } .nv { /* Name.Variable */ color: $base08; } .ow { /* Operator.Word */ color: $base0c; } .w { /* Text.Whitespace */ color: $base05; } .mf { /* Literal.Number.Float */ color: $base09; } .mh { /* Literal.Number.Hex */ color: $base09; } .mi { /* Literal.Number.Integer */ color: $base09; } .mo { /* Literal.Number.Oct */ color: $base09; } .sb { /* Literal.String.Backtick */ color: $base0b; } .sc { /* Literal.String.Char */ color: $base05; } .sd { /* Literal.String.Doc */ color: $base04; } .s2 { /* Literal.String.Double */ color: $base0b; } .se { /* Literal.String.Escape */ color: $base09; } .sh { /* Literal.String.Heredoc */ color: $base0b; } .si { /* Literal.String.Interpol */ color: $base09; } .sx { /* Literal.String.Other */ color: $base0b; } .sr { /* Literal.String.Regex */ color: $base0b; } .s1 { /* Literal.String.Single */ color: $base0b; } .ss { /* Literal.String.Symbol */ color: $base0b; } .bp { /* Name.Builtin.Pseudo */ color: $base05; } .vc { /* Name.Variable.Class */ color: $base08; } .vg { /* Name.Variable.Global */ color: $base08; } .vi { /* Name.Variable.Instance */ color: $base08; } .il { /* Literal.Number.Integer.Long */ color: $base09; } } .gist { th, td { border-bottom: 0; } } ================================================ FILE: _sass/minimal-mistakes/_tables.scss ================================================ /* ========================================================================== TABLES ========================================================================== */ table { display: block; margin-bottom: 1em; width: 100%; font-family: $global-font-family; font-size: $type-size-6; border-collapse: collapse; overflow-x: auto; & + table { margin-top: 1em; } } thead { background-color: $border-color; border-bottom: 2px solid mix(#000, $border-color, 25%); } th { padding: 0.5em; font-weight: bold; text-align: start; } td { padding: 0.5em; border-bottom: 1px solid mix(#000, $border-color, 25%); } tr, td, th { vertical-align: middle; } ================================================ FILE: _sass/minimal-mistakes/_utilities.scss ================================================ /* ========================================================================== UTILITY CLASSES ========================================================================== */ /* Visibility ========================================================================== */ /* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */ .hidden, .is--hidden { display: none; visibility: hidden; } /* for preloading images */ .load { display: none; } .transparent { opacity: 0; } /* https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html */ .visually-hidden, .screen-reader-text, .screen-reader-text span, .screen-reader-shortcut, .sr-only, .sr-only-focusable:not(:focus) { position: absolute !important; clip: rect(0, 0, 0, 0); height: 1px !important; width: 1px !important; padding: 0 !important; border: 0 !important; margin: -1px; overflow: hidden; white-space: nowrap; } body:hover .visually-hidden a, body:hover .visually-hidden input, body:hover .visually-hidden button { display: none !important; } /* screen readers */ .screen-reader-text:focus, .screen-reader-shortcut:focus { clip: auto !important; height: auto !important; width: auto !important; display: block; font-size: 1em; font-weight: bold; padding: 15px 23px 14px; background: #fff; z-index: 100000; text-decoration: none; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); } /* Skip links ========================================================================== */ .skip-link { position: fixed; z-index: 20; margin: 0; font-family: $sans-serif; white-space: nowrap; } .skip-link li { height: 0; width: 0; list-style: none; } /* Type ========================================================================== */ $text-alignments: left, right, start, end, center, justify; @each $alignment in $text-alignments { .text-#{$alignment} { text-align: $alignment; } } .text-nowrap { white-space: nowrap; } /* Task lists ========================================================================== */ .task-list { padding: 0; li { list-style-type: none; } .task-list-item-checkbox { margin-inline-end: 0.5em; opacity: 1; } } .task-list .task-list { margin-inline-start: 1em; } /* Alignment ========================================================================== */ /* clearfix */ .cf { clear: both; } .wrapper { margin-inline: auto; width: 100%; } /* Images ========================================================================== */ /* image align left */ .align-left { display: block; margin-inline: auto; @include breakpoint($small) { float: left; margin-right: 1em; } } /* image align right */ .align-right { display: block; margin-inline: auto; @include breakpoint($small) { float: right; margin-left: 1em; } } /* image align center */ .align-center { display: block; margin-inline: auto; } /* file page content container */ .full { @include breakpoint($large) { margin-inline-end: -1 * span(2.5 of 12) !important; } } /* Icons ========================================================================== */ .icon { display: inline-block; fill: currentColor; width: 1em; height: 1.1em; line-height: 1; position: relative; top: -0.1em; vertical-align: middle; } /* social icons*/ .social-icons { .fas, .fab, .far, .fal { color: $text-color; } @each $color, $icons in ( $behance-color: ".fa-behance, .fa-behance-square, .fa-square-behance", $bitbucket-color: ".fa-bitbucket", $bluesky-color: ".fa-bluesky, .fa-square-bluesky", $discord-color: ".fa-discord", $dribbble-color: ".fa-dribbble, .fa-dribbble-square, .fa-square-dribbble", $facebook-color: ".fa-facebook, .fa-facebook-square, .fa-square-facebook, .fa-facebook-f", $flickr-color: ".fa-flickr", $foursquare-color: ".fa-foursquare", $github-color: ".fa-github, .fa-github-alt, .fa-github-square, .fa-square-github", $gitlab-color: ".fa-gitlab", $instagram-color: ".fa-instagram, .fa-square-instagram", $keybase-color: ".fa-keybase", $lastfm-color: ".fa-lastfm, .fa-lastfm-square, .fa-square-lastfm", $linkedin-color: ".fa-linkedin, .fa-linkedin-in", $mastodon-color: ".fa-mastodon", $pinterest-color: ".fa-pinterest, .fa-pinterest-p, .fa-pinterest-square, .fa-square-pinterest", $reddit-color: ".fa-reddit", $rss-color: ".fa-rss, .fa-rss-square, .fa-square-rss", $signal-color: ".fa-signal-messenger", $soundcloud-color: ".fa-soundcloud", $stackoverflow-color: ".fa-stack-exchange, .fa-stack-overflow", $telegram-color: ".fa-telegram", $tumblr-color: ".fa-tumblr, .fa-tumblr-square, .fa-square-tumblr", $twitter-color: ".fa-twitter, .fa-twitter-square", $x-color: ".fa-x-twitter, .fa-square-x-twitter", $vimeo-color: ".fa-vimeo, .fa-vimeo-square, .fa-square-vimeo, .fa-vimeo-v", $vine-color: ".fa-vine", $whatsapp-color: ".fa-whatsapp", $xing-color: ".fa-xing, .fa-xing-square, .fa-square-xing", $youtube-color: ".fa-youtube", // Avoid "Duplicate key #000000 in map" error $black-color: ".fa-threads, .fa-square-threads, .fa-tiktok", ) { #{$icons} { color: $color; } } } /* Navicons ========================================================================== */ .navicon { position: relative; width: $navicon-width; height: $navicon-height; background: $primary-color; margin: auto; -webkit-transition: 0.3s; transition: 0.3s; &::before, &::after { content: ""; position: absolute; inset-inline-start: 0; width: $navicon-width; height: $navicon-height; background: $primary-color; -webkit-transition: 0.3s; transition: 0.3s; } &:before { top: (-2 * $navicon-height); } &:after { bottom: (-2 * $navicon-height); } } .close .navicon { /* hide the middle line*/ background: transparent; /* overlay the lines by setting both their top values to 0*/ &:before, &:after { -webkit-transform-origin: 50% 50%; -ms-transform-origin: 50% 50%; transform-origin: 50% 50%; top: 0; width: $navicon-width; } /* rotate the lines to form the x shape*/ &:before { -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg); } &:after { -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg); } } .greedy-nav__toggle { &:before { @supports (pointer-events: none) { content: ''; position: fixed; top: 0; inset-inline-start: 0; width: 100%; height: 100%; opacity: 0; background-color: $background-color; -webkit-transition: $global-transition; transition: $global-transition; pointer-events: none; } } &.close { &:before { opacity: 0.9; -webkit-transition: $global-transition; transition: $global-transition; pointer-events: auto; } } } .greedy-nav__toggle:hover { .navicon, .navicon:before, .navicon:after { background: mix(#000, $primary-color, 25%); } &.close { .navicon { background: transparent; } } } /* Sticky, fixed to top content ========================================================================== */ .sticky { @include breakpoint($large) { @include clearfix(); position: -webkit-sticky; position: sticky; top: 2em; > * { display: block; } } } /* Wells ========================================================================== */ .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: $border-radius; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } /* Modals ========================================================================== */ .show-modal { overflow: hidden; position: relative; &::before { position: absolute; content: ""; top: 0; inset-inline-start: 0; width: 100%; height: 100%; z-index: 999; background-color: rgba(255, 255, 255, 0.85); } .modal { display: block; } } .modal { display: none; position: fixed; width: 300px; top: 50%; inset-inline-start: 50%; margin-inline-start: -150px; margin-top: -150px; min-height: 0; z-index: 9999; background: #fff; border: 1px solid $border-color; border-radius: $border-radius; box-shadow: $box-shadow; &__title { margin: 0; padding: 0.5em 1em; } &__supporting-text { padding: 0 1em 0.5em 1em; } &__actions { padding: 0.5em 1em; border-top: 1px solid $border-color; } } /* Footnotes ========================================================================== */ .footnote { color: mix(#fff, $gray, 25%); text-decoration: none; } .footnotes { color: mix(#fff, $gray, 25%); ol, li, p { margin-bottom: 0; font-size: $type-size-6; } } a.reversefootnote { color: $gray; text-decoration: none; &:hover { text-decoration: underline; } } /* Required ========================================================================== */ .required { color: $danger-color; font-weight: bold; } /* Google Custom Search Engine ========================================================================== */ .gsc-control-cse { table, tr, td { border: 0; /* remove table borders widget */ } } /* Responsive Video Embed ========================================================================== */ .responsive-video-container { position: relative; margin-bottom: 1em; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; iframe, object, embed { position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 100%; } } // full screen video fixes :-webkit-full-screen-ancestor { .masthead, .page__footer { position: static; } } /* Copy
 block to clipboard
   ========================================================================== */

// a ";
	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;

	// Support: IE <=9 only
	// IE <=9 replaces ";
	support.option = !!div.lastChild;
} )();


// We have to close these tags to support XHTML (#13200)
var wrapMap = {

	// XHTML parsers do not magically insert elements in the
	// same way that tag soup parsers do. So we cannot shorten
	// this by omitting  or other required elements.
	thead: [ 1, "", "
" ], col: [ 2, "", "
" ], tr: [ 2, "", "
" ], td: [ 3, "", "
" ], _default: [ 0, "", "" ] }; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; // Support: IE <=9 only if ( !support.option ) { wrapMap.optgroup = wrapMap.option = [ 1, "" ]; } function getAll( context, tag ) { // Support: IE <=9 - 11 only // Use typeof to avoid zero-argument method invocation on host objects (#15151) var ret; if ( typeof context.getElementsByTagName !== "undefined" ) { ret = context.getElementsByTagName( tag || "*" ); } else if ( typeof context.querySelectorAll !== "undefined" ) { ret = context.querySelectorAll( tag || "*" ); } else { ret = []; } if ( tag === undefined || tag && nodeName( context, tag ) ) { return jQuery.merge( [ context ], ret ); } return ret; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var i = 0, l = elems.length; for ( ; i < l; i++ ) { dataPriv.set( elems[ i ], "globalEval", !refElements || dataPriv.get( refElements[ i ], "globalEval" ) ); } } var rhtml = /<|&#?\w+;/; function buildFragment( elems, context, scripts, selection, ignored ) { var elem, tmp, tag, wrap, attached, j, fragment = context.createDocumentFragment(), nodes = [], i = 0, l = elems.length; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( toType( elem ) === "object" ) { // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; // Descend through wrappers to the right content j = wrap[ 0 ]; while ( j-- ) { tmp = tmp.lastChild; } // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, tmp.childNodes ); // Remember the top-level container tmp = fragment.firstChild; // Ensure the created nodes are orphaned (#12392) tmp.textContent = ""; } } } // Remove wrapper from fragment fragment.textContent = ""; i = 0; while ( ( elem = nodes[ i++ ] ) ) { // Skip elements already in the context collection (trac-4087) if ( selection && jQuery.inArray( elem, selection ) > -1 ) { if ( ignored ) { ignored.push( elem ); } continue; } attached = isAttached( elem ); // Append to fragment tmp = getAll( fragment.appendChild( elem ), "script" ); // Preserve script evaluation history if ( attached ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( ( elem = tmp[ j++ ] ) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } return fragment; } var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; function returnTrue() { return true; } function returnFalse() { return false; } // Support: IE <=9 - 11+ // focus() and blur() are asynchronous, except when they are no-op. // So expect focus to be synchronous when the element is already active, // and blur to be synchronous when the element is not already active. // (focus and blur are always synchronous in other supported browsers, // this just defines when we can count on it). function expectSync( elem, type ) { return ( elem === safeActiveElement() ) === ( type === "focus" ); } // Support: IE <=9 only // Accessing document.activeElement can throw unexpectedly // https://bugs.jquery.com/ticket/13393 function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } function on( elem, types, selector, data, fn, one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { on( elem, type, selector, data, types[ type ], one ); } return elem; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return elem; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return elem.each( function() { jQuery.event.add( this, types, fn, data, selector ); } ); } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.get( elem ); // Only attach events to objects that accept data if ( !acceptData( elem ) ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Ensure that invalid selectors throw exceptions at attach time // Evaluate against documentElement in case elem is a non-element node (e.g., document) if ( selector ) { jQuery.find.matchesSelector( documentElement, selector ); } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !( events = elemData.events ) ) { events = elemData.events = Object.create( null ); } if ( !( eventHandle = elemData.handle ) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply( elem, arguments ) : undefined; }; } // Handle multiple events separated by a space types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { continue; } // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend( { type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join( "." ) }, handleObjIn ); // Init the event handler queue if we're the first if ( !( handlers = events[ type ] ) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); if ( !elemData || !( events = elemData.events ) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[ 2 ] && new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove data and the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { dataPriv.remove( elem, "handle events" ); } }, dispatch: function( nativeEvent ) { var i, j, ret, matched, handleObj, handlerQueue, args = new Array( arguments.length ), // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( nativeEvent ), handlers = ( dataPriv.get( this, "events" ) || Object.create( null ) )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[ 0 ] = event; for ( i = 1; i < arguments.length; i++ ) { args[ i ] = arguments[ i ]; } event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( ( handleObj = matched.handlers[ j++ ] ) && !event.isImmediatePropagationStopped() ) { // If the event is namespaced, then each handler is only invoked if it is // specially universal or its namespaces are a superset of the event's. if ( !event.rnamespace || handleObj.namespace === false || event.rnamespace.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || handleObj.handler ).apply( matched.elem, args ); if ( ret !== undefined ) { if ( ( event.result = ret ) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, handleObj, sel, matchedHandlers, matchedSelectors, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers if ( delegateCount && // Support: IE <=9 // Black-hole SVG instance trees (trac-13180) cur.nodeType && // Support: Firefox <=42 // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click // Support: IE 11 only // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) !( event.type === "click" && event.button >= 1 ) ) { for ( ; cur !== this; cur = cur.parentNode || this ) { // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { matchedHandlers = []; matchedSelectors = {}; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matchedSelectors[ sel ] === undefined ) { matchedSelectors[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) > -1 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matchedSelectors[ sel ] ) { matchedHandlers.push( handleObj ); } } if ( matchedHandlers.length ) { handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); } } } } // Add the remaining (directly-bound) handlers cur = this; if ( delegateCount < handlers.length ) { handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); } return handlerQueue; }, addProp: function( name, hook ) { Object.defineProperty( jQuery.Event.prototype, name, { enumerable: true, configurable: true, get: isFunction( hook ) ? function() { if ( this.originalEvent ) { return hook( this.originalEvent ); } } : function() { if ( this.originalEvent ) { return this.originalEvent[ name ]; } }, set: function( value ) { Object.defineProperty( this, name, { enumerable: true, configurable: true, writable: true, value: value } ); } } ); }, fix: function( originalEvent ) { return originalEvent[ jQuery.expando ] ? originalEvent : new jQuery.Event( originalEvent ); }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, click: { // Utilize native event to ensure correct state for checkable inputs setup: function( data ) { // For mutual compressibility with _default, replace `this` access with a local var. // `|| data` is dead code meant only to preserve the variable through minification. var el = this || data; // Claim the first handler if ( rcheckableType.test( el.type ) && el.click && nodeName( el, "input" ) ) { // dataPriv.set( el, "click", ... ) leverageNative( el, "click", returnTrue ); } // Return false to allow normal processing in the caller return false; }, trigger: function( data ) { // For mutual compressibility with _default, replace `this` access with a local var. // `|| data` is dead code meant only to preserve the variable through minification. var el = this || data; // Force setup before triggering a click if ( rcheckableType.test( el.type ) && el.click && nodeName( el, "input" ) ) { leverageNative( el, "click" ); } // Return non-false to allow normal event-path propagation return true; }, // For cross-browser consistency, suppress native .click() on links // Also prevent it if we're currently inside a leveraged native-event stack _default: function( event ) { var target = event.target; return rcheckableType.test( target.type ) && target.click && nodeName( target, "input" ) && dataPriv.get( target, "click" ) || nodeName( target, "a" ); } }, beforeunload: { postDispatch: function( event ) { // Support: Firefox 20+ // Firefox doesn't alert if the returnValue field is not set. if ( event.result !== undefined && event.originalEvent ) { event.originalEvent.returnValue = event.result; } } } } }; // Ensure the presence of an event listener that handles manually-triggered // synthetic events by interrupting progress until reinvoked in response to // *native* events that it fires directly, ensuring that state changes have // already occurred before other listeners are invoked. function leverageNative( el, type, expectSync ) { // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add if ( !expectSync ) { if ( dataPriv.get( el, type ) === undefined ) { jQuery.event.add( el, type, returnTrue ); } return; } // Register the controller as a special universal handler for all event namespaces dataPriv.set( el, type, false ); jQuery.event.add( el, type, { namespace: false, handler: function( event ) { var notAsync, result, saved = dataPriv.get( this, type ); if ( ( event.isTrigger & 1 ) && this[ type ] ) { // Interrupt processing of the outer synthetic .trigger()ed event // Saved data should be false in such cases, but might be a leftover capture object // from an async native handler (gh-4350) if ( !saved.length ) { // Store arguments for use when handling the inner native event // There will always be at least one argument (an event object), so this array // will not be confused with a leftover capture object. saved = slice.call( arguments ); dataPriv.set( this, type, saved ); // Trigger the native event and capture its result // Support: IE <=9 - 11+ // focus() and blur() are asynchronous notAsync = expectSync( this, type ); this[ type ](); result = dataPriv.get( this, type ); if ( saved !== result || notAsync ) { dataPriv.set( this, type, false ); } else { result = {}; } if ( saved !== result ) { // Cancel the outer synthetic event event.stopImmediatePropagation(); event.preventDefault(); // Support: Chrome 86+ // In Chrome, if an element having a focusout handler is blurred by // clicking outside of it, it invokes the handler synchronously. If // that handler calls `.remove()` on the element, the data is cleared, // leaving `result` undefined. We need to guard against this. return result && result.value; } // If this is an inner synthetic event for an event with a bubbling surrogate // (focus or blur), assume that the surrogate already propagated from triggering the // native event and prevent that from happening again here. // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the // bubbling surrogate propagates *after* the non-bubbling base), but that seems // less bad than duplication. } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { event.stopPropagation(); } // If this is a native event triggered above, everything is now in order // Fire an inner synthetic event with the original arguments } else if ( saved.length ) { // ...and capture the result dataPriv.set( this, type, { value: jQuery.event.trigger( // Support: IE <=9 - 11+ // Extend with the prototype to reset the above stopImmediatePropagation() jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), saved.slice( 1 ), this ) } ); // Abort handling of the native event event.stopImmediatePropagation(); } } } ); } jQuery.removeEvent = function( elem, type, handle ) { // This "if" is needed for plain objects if ( elem.removeEventListener ) { elem.removeEventListener( type, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !( this instanceof jQuery.Event ) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && // Support: Android <=2.3 only src.returnValue === false ? returnTrue : returnFalse; // Create target properties // Support: Safari <=6 - 7 only // Target should not be a text node (#504, #13143) this.target = ( src.target && src.target.nodeType === 3 ) ? src.target.parentNode : src.target; this.currentTarget = src.currentTarget; this.relatedTarget = src.relatedTarget; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { constructor: jQuery.Event, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, isSimulated: false, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( e && !this.isSimulated ) { e.preventDefault(); } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( e && !this.isSimulated ) { e.stopPropagation(); } }, stopImmediatePropagation: function() { var e = this.originalEvent; this.isImmediatePropagationStopped = returnTrue; if ( e && !this.isSimulated ) { e.stopImmediatePropagation(); } this.stopPropagation(); } }; // Includes all common event props including KeyEvent and MouseEvent specific props jQuery.each( { altKey: true, bubbles: true, cancelable: true, changedTouches: true, ctrlKey: true, detail: true, eventPhase: true, metaKey: true, pageX: true, pageY: true, shiftKey: true, view: true, "char": true, code: true, charCode: true, key: true, keyCode: true, button: true, buttons: true, clientX: true, clientY: true, offsetX: true, offsetY: true, pointerId: true, pointerType: true, screenX: true, screenY: true, targetTouches: true, toElement: true, touches: true, which: true }, jQuery.event.addProp ); jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { jQuery.event.special[ type ] = { // Utilize native event if possible so blur/focus sequence is correct setup: function() { // Claim the first handler // dataPriv.set( this, "focus", ... ) // dataPriv.set( this, "blur", ... ) leverageNative( this, type, expectSync ); // Return false to allow normal processing in the caller return false; }, trigger: function() { // Force setup before trigger leverageNative( this, type ); // Return non-false to allow normal event-path propagation return true; }, // Suppress native focus or blur as it's already being fired // in leverageNative. _default: function() { return true; }, delegateType: delegateType }; } ); // Create mouseenter/leave events using mouseover/out and event-time checks // so that event delegation works in jQuery. // Do the same for pointerenter/pointerleave and pointerover/pointerout // // Support: Safari 7 only // Safari sends mouseenter too often; see: // https://bugs.chromium.org/p/chromium/issues/detail?id=470258 // for the description of the bug (it existed in older Chrome versions as well). jQuery.each( { mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mouseenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; } ); jQuery.fn.extend( { on: function( types, selector, data, fn ) { return on( this, types, selector, data, fn ); }, one: function( types, selector, data, fn ) { return on( this, types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each( function() { jQuery.event.remove( this, types, fn, selector ); } ); } } ); var // Support: IE <=10 - 11, Edge 12 - 13 only // In IE/Edge using regex groups here causes severe slowdowns. // See https://connect.microsoft.com/IE/feedback/details/1736512/ rnoInnerhtml = /\s*$/g; // Prefer a tbody over its parent table for containing new rows function manipulationTarget( elem, content ) { if ( nodeName( elem, "table" ) && nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { return jQuery( elem ).children( "tbody" )[ 0 ] || elem; } return elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; return elem; } function restoreScript( elem ) { if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { elem.type = elem.type.slice( 5 ); } else { elem.removeAttribute( "type" ); } return elem; } function cloneCopyEvent( src, dest ) { var i, l, type, pdataOld, udataOld, udataCur, events; if ( dest.nodeType !== 1 ) { return; } // 1. Copy private data: events, handlers, etc. if ( dataPriv.hasData( src ) ) { pdataOld = dataPriv.get( src ); events = pdataOld.events; if ( events ) { dataPriv.remove( dest, "handle events" ); for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } } // 2. Copy user data if ( dataUser.hasData( src ) ) { udataOld = dataUser.access( src ); udataCur = jQuery.extend( {}, udataOld ); dataUser.set( dest, udataCur ); } } // Fix IE bugs, see support tests function fixInput( src, dest ) { var nodeName = dest.nodeName.toLowerCase(); // Fails to persist the checked state of a cloned checkbox or radio button. if ( nodeName === "input" && rcheckableType.test( src.type ) ) { dest.checked = src.checked; // Fails to return the selected option to the default selected state when cloning options } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } function domManip( collection, args, callback, ignored ) { // Flatten any nested arrays args = flat( args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, l = collection.length, iNoClone = l - 1, value = args[ 0 ], valueIsFunction = isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( valueIsFunction || ( l > 1 && typeof value === "string" && !support.checkClone && rchecked.test( value ) ) ) { return collection.each( function( index ) { var self = collection.eq( index ); if ( valueIsFunction ) { args[ 0 ] = value.call( this, index, self.html() ); } domManip( self, args, callback, ignored ); } ); } if ( l ) { fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } // Require either new content or an interest in ignored elements to invoke the callback if ( first || ignored ) { scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item // instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( collection[ i ], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !dataPriv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { // Optional AJAX dependency, but won't run scripts if not present if ( jQuery._evalUrl && !node.noModule ) { jQuery._evalUrl( node.src, { nonce: node.nonce || node.getAttribute( "nonce" ) }, doc ); } } else { DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); } } } } } } return collection; } function remove( elem, selector, keepData ) { var node, nodes = selector ? jQuery.filter( selector, elem ) : elem, i = 0; for ( ; ( node = nodes[ i ] ) != null; i++ ) { if ( !keepData && node.nodeType === 1 ) { jQuery.cleanData( getAll( node ) ); } if ( node.parentNode ) { if ( keepData && isAttached( node ) ) { setGlobalEval( getAll( node, "script" ) ); } node.parentNode.removeChild( node ); } } return elem; } jQuery.extend( { htmlPrefilter: function( html ) { return html; }, clone: function( elem, dataAndEvents, deepDataAndEvents ) { var i, l, srcElements, destElements, clone = elem.cloneNode( true ), inPage = isAttached( elem ); // Fix IE cloning issues if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); for ( i = 0, l = srcElements.length; i < l; i++ ) { fixInput( srcElements[ i ], destElements[ i ] ); } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0, l = srcElements.length; i < l; i++ ) { cloneCopyEvent( srcElements[ i ], destElements[ i ] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } // Return the cloned set return clone; }, cleanData: function( elems ) { var data, elem, type, special = jQuery.event.special, i = 0; for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { if ( acceptData( elem ) ) { if ( ( data = elem[ dataPriv.expando ] ) ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Support: Chrome <=35 - 45+ // Assign undefined instead of using delete, see Data#remove elem[ dataPriv.expando ] = undefined; } if ( elem[ dataUser.expando ] ) { // Support: Chrome <=35 - 45+ // Assign undefined instead of using delete, see Data#remove elem[ dataUser.expando ] = undefined; } } } } } ); jQuery.fn.extend( { detach: function( selector ) { return remove( this, selector, true ); }, remove: function( selector ) { return remove( this, selector ); }, text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().each( function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } } ); }, null, value, arguments.length ); }, append: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } } ); }, prepend: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } } ); }, before: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } } ); }, after: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } } ); }, empty: function() { var elem, i = 0; for ( ; ( elem = this[ i ] ) != null; i++ ) { if ( elem.nodeType === 1 ) { // Prevent memory leaks jQuery.cleanData( getAll( elem, false ) ); // Remove any remaining nodes elem.textContent = ""; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); } ); }, html: function( value ) { return access( this, function( value ) { var elem = this[ 0 ] || {}, i = 0, l = this.length; if ( value === undefined && elem.nodeType === 1 ) { return elem.innerHTML; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { value = jQuery.htmlPrefilter( value ); try { for ( ; i < l; i++ ) { elem = this[ i ] || {}; // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch ( e ) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function() { var ignored = []; // Make the changes, replacing each non-ignored context element with the new content return domManip( this, arguments, function( elem ) { var parent = this.parentNode; if ( jQuery.inArray( this, ignored ) < 0 ) { jQuery.cleanData( getAll( this ) ); if ( parent ) { parent.replaceChild( elem, this ); } } // Force callback invocation }, ignored ); } } ); jQuery.each( { appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, ret = [], insert = jQuery( selector ), last = insert.length - 1, i = 0; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); // Support: Android <=4.0 only, PhantomJS 1 only // .get() because push.apply(_, arraylike) throws on ancient WebKit push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; } ); var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); var getStyles = function( elem ) { // Support: IE <=11 only, Firefox <=30 (#15098, #14150) // IE throws on elements created in popups // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" var view = elem.ownerDocument.defaultView; if ( !view || !view.opener ) { view = window; } return view.getComputedStyle( elem ); }; var swap = function( elem, options, callback ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.call( elem ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; }; var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); ( function() { // Executing both pixelPosition & boxSizingReliable tests require only one layout // so they're executed at the same time to save the second computation. function computeStyleTests() { // This is a singleton, we need to execute it only once if ( !div ) { return; } container.style.cssText = "position:absolute;left:-11111px;width:60px;" + "margin-top:1px;padding:0;border:0"; div.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + "margin:auto;border:1px;padding:1px;" + "width:60%;top:1%"; documentElement.appendChild( container ).appendChild( div ); var divStyle = window.getComputedStyle( div ); pixelPositionVal = divStyle.top !== "1%"; // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 // Some styles come back with percentage values, even though they shouldn't div.style.right = "60%"; pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; // Support: IE 9 - 11 only // Detect misreporting of content dimensions for box-sizing:border-box elements boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; // Support: IE 9 only // Detect overflow:scroll screwiness (gh-3699) // Support: Chrome <=64 // Don't get tricked when zoom affects offsetWidth (gh-4029) div.style.position = "absolute"; scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; documentElement.removeChild( container ); // Nullify the div so it wouldn't be stored in the memory and // it will also be a sign that checks already performed div = null; } function roundPixelMeasures( measure ) { return Math.round( parseFloat( measure ) ); } var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, reliableTrDimensionsVal, reliableMarginLeftVal, container = document.createElement( "div" ), div = document.createElement( "div" ); // Finish early in limited (non-browser) environments if ( !div.style ) { return; } // Support: IE <=9 - 11 only // Style of cloned element affects source element cloned (#8908) div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; jQuery.extend( support, { boxSizingReliable: function() { computeStyleTests(); return boxSizingReliableVal; }, pixelBoxStyles: function() { computeStyleTests(); return pixelBoxStylesVal; }, pixelPosition: function() { computeStyleTests(); return pixelPositionVal; }, reliableMarginLeft: function() { computeStyleTests(); return reliableMarginLeftVal; }, scrollboxSize: function() { computeStyleTests(); return scrollboxSizeVal; }, // Support: IE 9 - 11+, Edge 15 - 18+ // IE/Edge misreport `getComputedStyle` of table rows with width/height // set in CSS while `offset*` properties report correct values. // Behavior in IE 9 is more subtle than in newer versions & it passes // some versions of this test; make sure not to make it pass there! // // Support: Firefox 70+ // Only Firefox includes border widths // in computed dimensions. (gh-4529) reliableTrDimensions: function() { var table, tr, trChild, trStyle; if ( reliableTrDimensionsVal == null ) { table = document.createElement( "table" ); tr = document.createElement( "tr" ); trChild = document.createElement( "div" ); table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; tr.style.cssText = "border:1px solid"; // Support: Chrome 86+ // Height set through cssText does not get applied. // Computed height then comes back as 0. tr.style.height = "1px"; trChild.style.height = "9px"; // Support: Android 8 Chrome 86+ // In our bodyBackground.html iframe, // display for all div elements is set to "inline", // which causes a problem only in Android 8 Chrome 86. // Ensuring the div is display: block // gets around this issue. trChild.style.display = "block"; documentElement .appendChild( table ) .appendChild( tr ) .appendChild( trChild ); trStyle = window.getComputedStyle( tr ); reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + parseInt( trStyle.borderTopWidth, 10 ) + parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; documentElement.removeChild( table ); } return reliableTrDimensionsVal; } } ); } )(); function curCSS( elem, name, computed ) { var width, minWidth, maxWidth, ret, // Support: Firefox 51+ // Retrieving style before computed somehow // fixes an issue with getting wrong values // on detached elements style = elem.style; computed = computed || getStyles( elem ); // getPropertyValue is needed for: // .css('filter') (IE 9 only, #12537) // .css('--customProperty) (#3144) if ( computed ) { ret = computed.getPropertyValue( name ) || computed[ name ]; if ( ret === "" && !isAttached( elem ) ) { ret = jQuery.style( elem, name ); } // A tribute to the "awesome hack by Dean Edwards" // Android Browser returns percentage for some values, // but width seems to be reliably pixels. // This is against the CSSOM draft spec: // https://drafts.csswg.org/cssom/#resolved-values if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } return ret !== undefined ? // Support: IE <=9 - 11 only // IE returns zIndex value as an integer. ret + "" : ret; } function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { if ( conditionFn() ) { // Hook not needed (or it's not possible to use it due // to missing dependency), remove it. delete this.get; return; } // Hook needed; redefine it so that the support test is not executed again. return ( this.get = hookFn ).apply( this, arguments ); } }; } var cssPrefixes = [ "Webkit", "Moz", "ms" ], emptyStyle = document.createElement( "div" ).style, vendorProps = {}; // Return a vendor-prefixed property or undefined function vendorPropName( name ) { // Check for vendor prefixed names var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in emptyStyle ) { return name; } } } // Return a potentially-mapped jQuery.cssProps or vendor prefixed property function finalPropName( name ) { var final = jQuery.cssProps[ name ] || vendorProps[ name ]; if ( final ) { return final; } if ( name in emptyStyle ) { return name; } return vendorProps[ name ] = vendorPropName( name ) || name; } var // Swappable if display is none or starts with table // except "table", "table-cell", or "table-caption" // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rcustomProp = /^--/, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: "0", fontWeight: "400" }; function setPositiveNumber( _elem, value, subtract ) { // Any relative (+/-) values have already been // normalized at this point var matches = rcssNum.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : value; } function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { var i = dimension === "width" ? 1 : 0, extra = 0, delta = 0; // Adjustment may not be necessary if ( box === ( isBorderBox ? "border" : "content" ) ) { return 0; } for ( ; i < 4; i += 2 ) { // Both box models exclude margin if ( box === "margin" ) { delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); } // If we get here with a content-box, we're seeking "padding" or "border" or "margin" if ( !isBorderBox ) { // Add padding delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // For "border" or "margin", add border if ( box !== "padding" ) { delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); // But still keep track of it otherwise } else { extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } // If we get here with a border-box (content + padding + border), we're seeking "content" or // "padding" or "margin" } else { // For "content", subtract padding if ( box === "content" ) { delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // For "content" or "padding", subtract border if ( box !== "margin" ) { delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } // Account for positive content-box scroll gutter when requested by providing computedVal if ( !isBorderBox && computedVal >= 0 ) { // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border // Assuming integer scroll gutter, subtract the rest and round down delta += Math.max( 0, Math.ceil( elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - computedVal - delta - extra - 0.5 // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter // Use an explicit zero to avoid NaN (gh-3964) ) ) || 0; } return delta; } function getWidthOrHeight( elem, dimension, extra ) { // Start with computed style var styles = getStyles( elem ), // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). // Fake content-box until we know it's needed to know the true value. boxSizingNeeded = !support.boxSizingReliable() || extra, isBorderBox = boxSizingNeeded && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", valueIsBorderBox = isBorderBox, val = curCSS( elem, dimension, styles ), offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); // Support: Firefox <=54 // Return a confounding non-pixel value or feign ignorance, as appropriate. if ( rnumnonpx.test( val ) ) { if ( !extra ) { return val; } val = "auto"; } // Support: IE 9 - 11 only // Use offsetWidth/offsetHeight for when box sizing is unreliable. // In those cases, the computed value can be trusted to be border-box. if ( ( !support.boxSizingReliable() && isBorderBox || // Support: IE 10 - 11+, Edge 15 - 18+ // IE/Edge misreport `getComputedStyle` of table rows with width/height // set in CSS while `offset*` properties report correct values. // Interestingly, in some cases IE 9 doesn't suffer from this issue. !support.reliableTrDimensions() && nodeName( elem, "tr" ) || // Fall back to offsetWidth/offsetHeight when value is "auto" // This happens for inline elements with no explicit setting (gh-3571) val === "auto" || // Support: Android <=4.1 - 4.3 only // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && // Make sure the element is visible & connected elem.getClientRects().length ) { isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // Where available, offsetWidth/offsetHeight approximate border box dimensions. // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the // retrieved value as a content box dimension. valueIsBorderBox = offsetProp in elem; if ( valueIsBorderBox ) { val = elem[ offsetProp ]; } } // Normalize "" and auto val = parseFloat( val ) || 0; // Adjust for the element's box model return ( val + boxModelAdjustment( elem, dimension, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles, // Provide the current computed size to request scroll gutter calculation (gh-3589) val ) ) + "px"; } jQuery.extend( { // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Don't automatically add "px" to these possibly-unitless properties cssNumber: { "animationIterationCount": true, "columnCount": true, "fillOpacity": true, "flexGrow": true, "flexShrink": true, "fontWeight": true, "gridArea": true, "gridColumn": true, "gridColumnEnd": true, "gridColumnStart": true, "gridRow": true, "gridRowEnd": true, "gridRowStart": true, "lineHeight": true, "opacity": true, "order": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: {}, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = camelCase( name ), isCustomProp = rcustomProp.test( name ), style = elem.style; // Make sure that we're working with the right name. We don't // want to query the value if it is a CSS custom property // since they are user-defined. if ( !isCustomProp ) { name = finalPropName( origName ); } // Gets hook for the prefixed version, then unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // Convert "+=" or "-=" to relative numbers (#7345) if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { value = adjustCSS( elem, name, ret ); // Fixes bug #9237 type = "number"; } // Make sure that null and NaN values aren't set (#7116) if ( value == null || value !== value ) { return; } // If a number was passed in, add the unit (except for certain CSS properties) // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append // "px" to a few hardcoded values. if ( type === "number" && !isCustomProp ) { value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); } // background-* props affect original clone's values if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !( "set" in hooks ) || ( value = hooks.set( elem, value, extra ) ) !== undefined ) { if ( isCustomProp ) { style.setProperty( name, value ); } else { style[ name ] = value; } } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var val, num, hooks, origName = camelCase( name ), isCustomProp = rcustomProp.test( name ); // Make sure that we're working with the right name. We don't // want to modify the value if it is a CSS custom property // since they are user-defined. if ( !isCustomProp ) { name = finalPropName( origName ); } // Try prefixed name followed by the unprefixed name hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } // Convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Make numeric if forced or a qualifier was provided and val looks numeric if ( extra === "" || extra ) { num = parseFloat( val ); return extra === true || isFinite( num ) ? num || 0 : val; } return val; } } ); jQuery.each( [ "height", "width" ], function( _i, dimension ) { jQuery.cssHooks[ dimension ] = { get: function( elem, computed, extra ) { if ( computed ) { // Certain elements can have dimension info if we invisibly show them // but it must have a current display style that would benefit return rdisplayswap.test( jQuery.css( elem, "display" ) ) && // Support: Safari 8+ // Table columns in Safari have non-zero offsetWidth & zero // getBoundingClientRect().width unless display is changed. // Support: IE <=11 only // Running getBoundingClientRect on a disconnected node // in IE throws an error. ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? swap( elem, cssShow, function() { return getWidthOrHeight( elem, dimension, extra ); } ) : getWidthOrHeight( elem, dimension, extra ); } }, set: function( elem, value, extra ) { var matches, styles = getStyles( elem ), // Only read styles.position if the test has a chance to fail // to avoid forcing a reflow. scrollboxSizeBuggy = !support.scrollboxSize() && styles.position === "absolute", // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) boxSizingNeeded = scrollboxSizeBuggy || extra, isBorderBox = boxSizingNeeded && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", subtract = extra ? boxModelAdjustment( elem, dimension, extra, isBorderBox, styles ) : 0; // Account for unreliable border-box dimensions by comparing offset* to computed and // faking a content-box to get border and padding (gh-3699) if ( isBorderBox && scrollboxSizeBuggy ) { subtract -= Math.ceil( elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - parseFloat( styles[ dimension ] ) - boxModelAdjustment( elem, dimension, "border", false, styles ) - 0.5 ); } // Convert to pixels if value adjustment is needed if ( subtract && ( matches = rcssNum.exec( value ) ) && ( matches[ 3 ] || "px" ) !== "px" ) { elem.style[ dimension ] = value; value = jQuery.css( elem, dimension ); } return setPositiveNumber( elem, value, subtract ); } }; } ); jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, function( elem, computed ) { if ( computed ) { return ( parseFloat( curCSS( elem, "marginLeft" ) ) || elem.getBoundingClientRect().left - swap( elem, { marginLeft: 0 }, function() { return elem.getBoundingClientRect().left; } ) ) + "px"; } } ); // These hooks are used by animate to expand properties jQuery.each( { margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // Assumes a single number if not a string parts = typeof value === "string" ? value.split( " " ) : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( prefix !== "margin" ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } } ); jQuery.fn.extend( { css: function( name, value ) { return access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( Array.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); } } ); function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || jQuery.easing._default; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; // Use a property on the element directly when it is not a DOM element, // or when there is no matching style property that exists. if ( tween.elem.nodeType !== 1 || tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { return tween.elem[ tween.prop ]; } // Passing an empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails. // Simple values such as "10px" are parsed to Float; // complex values such as "rotate(1rad)" are returned as-is. result = jQuery.css( tween.elem, tween.prop, "" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // Use step hook for back compat. // Use cssHook if its there. // Use .style if available and use plain properties where available. if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.nodeType === 1 && ( jQuery.cssHooks[ tween.prop ] || tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Support: IE <=9 only // Panic based approach to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p * Math.PI ) / 2; }, _default: "swing" }; jQuery.fx = Tween.prototype.init; // Back compat <1.8 extension point jQuery.fx.step = {}; var fxNow, inProgress, rfxtypes = /^(?:toggle|show|hide)$/, rrun = /queueHooks$/; function schedule() { if ( inProgress ) { if ( document.hidden === false && window.requestAnimationFrame ) { window.requestAnimationFrame( schedule ); } else { window.setTimeout( schedule, jQuery.fx.interval ); } jQuery.fx.tick(); } } // Animations created synchronously will run synchronously function createFxNow() { window.setTimeout( function() { fxNow = undefined; } ); return ( fxNow = Date.now() ); } // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, i = 0, attrs = { height: type }; // If we include width, step value is 1 to do all cssExpand values, // otherwise step value is 2 to skip over Left and Right includeWidth = includeWidth ? 1 : 0; for ( ; i < 4; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } function createTween( value, prop, animation ) { var tween, collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { // We're done with this property return tween; } } } function defaultPrefilter( elem, props, opts ) { var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, isBox = "width" in props || "height" in props, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHiddenWithinTree( elem ), dataShow = dataPriv.get( elem, "fxshow" ); // Queue-skipping animations hijack the fx hooks if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always( function() { // Ensure the complete handler is called before this completes anim.always( function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } } ); } ); } // Detect show/hide animations for ( prop in props ) { value = props[ prop ]; if ( rfxtypes.test( value ) ) { delete props[ prop ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { // Pretend to be hidden if this is a "show" and // there is still data from a stopped show/hide if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { hidden = true; // Ignore all other no-op show/hide data } else { continue; } } orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); } } // Bail out if this is a no-op like .hide().hide() propTween = !jQuery.isEmptyObject( props ); if ( !propTween && jQuery.isEmptyObject( orig ) ) { return; } // Restrict "overflow" and "display" styles during box animations if ( isBox && elem.nodeType === 1 ) { // Support: IE <=9 - 11, Edge 12 - 15 // Record all 3 overflow attributes because IE does not infer the shorthand // from identically-valued overflowX and overflowY and Edge just mirrors // the overflowX value there. opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Identify a display type, preferring old show/hide data over the CSS cascade restoreDisplay = dataShow && dataShow.display; if ( restoreDisplay == null ) { restoreDisplay = dataPriv.get( elem, "display" ); } display = jQuery.css( elem, "display" ); if ( display === "none" ) { if ( restoreDisplay ) { display = restoreDisplay; } else { // Get nonempty value(s) by temporarily forcing visibility showHide( [ elem ], true ); restoreDisplay = elem.style.display || restoreDisplay; display = jQuery.css( elem, "display" ); showHide( [ elem ] ); } } // Animate inline elements as inline-block if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { if ( jQuery.css( elem, "float" ) === "none" ) { // Restore the original display value at the end of pure show/hide animations if ( !propTween ) { anim.done( function() { style.display = restoreDisplay; } ); if ( restoreDisplay == null ) { display = style.display; restoreDisplay = display === "none" ? "" : display; } } style.display = "inline-block"; } } } if ( opts.overflow ) { style.overflow = "hidden"; anim.always( function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; } ); } // Implement show/hide animations propTween = false; for ( prop in orig ) { // General show/hide setup for this element animation if ( !propTween ) { if ( dataShow ) { if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } } else { dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); } // Store hidden/visible for toggle so `.stop().toggle()` "reverses" if ( toggle ) { dataShow.hidden = !hidden; } // Show elements before animating them if ( hidden ) { showHide( [ elem ], true ); } /* eslint-disable no-loop-func */ anim.done( function() { /* eslint-enable no-loop-func */ // The final step of a "hide" animation is actually hiding the element if ( !hidden ) { showHide( [ elem ] ); } dataPriv.remove( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } } ); } // Per-property setup propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = propTween.start; if ( hidden ) { propTween.end = propTween.start; propTween.start = 0; } } } } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( Array.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // Not quite $.extend, this won't overwrite existing keys. // Reusing 'index' because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = Animation.prefilters.length, deferred = jQuery.Deferred().always( function() { // Don't match elem in the :animated selector delete tick.elem; } ), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // Support: Android 2.3 only // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ] ); // If there's more to do, yield if ( percent < 1 && length ) { return remaining; } // If this was an empty animation, synthesize a final progress notification if ( !length ) { deferred.notifyWith( elem, [ animation, 1, 0 ] ); } // Resolve the animation and report its conclusion deferred.resolveWith( elem, [ animation ] ); return false; }, animation = deferred.promise( { elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {}, easing: jQuery.easing._default }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // If we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length; index++ ) { animation.tweens[ index ].run( 1 ); } // Resolve when we played the last frame; otherwise, reject if ( gotoEnd ) { deferred.notifyWith( elem, [ animation, 1, 0 ] ); deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } } ), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length; index++ ) { result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { if ( isFunction( result.stop ) ) { jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = result.stop.bind( result ); } return result; } } jQuery.map( props, createTween, animation ); if ( isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } // Attach callbacks from options animation .progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue } ) ); return animation; } jQuery.Animation = jQuery.extend( Animation, { tweeners: { "*": [ function( prop, value ) { var tween = this.createTween( prop, value ); adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); return tween; } ] }, tweener: function( props, callback ) { if ( isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.match( rnothtmlwhite ); } var prop, index = 0, length = props.length; for ( ; index < length; index++ ) { prop = props[ index ]; Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; Animation.tweeners[ prop ].unshift( callback ); } }, prefilters: [ defaultPrefilter ], prefilter: function( callback, prepend ) { if ( prepend ) { Animation.prefilters.unshift( callback ); } else { Animation.prefilters.push( callback ); } } } ); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !isFunction( easing ) && easing }; // Go to the end state if fx are off if ( jQuery.fx.off ) { opt.duration = 0; } else { if ( typeof opt.duration !== "number" ) { if ( opt.duration in jQuery.fx.speeds ) { opt.duration = jQuery.fx.speeds[ opt.duration ]; } else { opt.duration = jQuery.fx.speeds._default; } } } // Normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.fn.extend( { fadeTo: function( speed, to, easing, callback ) { // Show any hidden elements after setting opacity to 0 return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() // Animate to the value specified .end().animate( { opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); // Empty animations, or finishing resolves immediately if ( empty || dataPriv.get( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue ) { this.queue( type || "fx", [] ); } return this.each( function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = dataPriv.get( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && ( type == null || timers[ index ].queue === type ) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // Start the next in the queue if the last step wasn't forced. // Timers currently will call their complete callbacks, which // will dequeue but only if they were gotoEnd. if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } } ); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each( function() { var index, data = dataPriv.get( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // Enable finishing flag on private data data.finish = true; // Empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.stop ) { hooks.stop.call( this, true ); } // Look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // Look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // Turn off finishing flag delete data.finish; } ); } } ); jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; } ); // Generate shortcuts for custom animations jQuery.each( { slideDown: genFx( "show" ), slideUp: genFx( "hide" ), slideToggle: genFx( "toggle" ), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; } ); jQuery.timers = []; jQuery.fx.tick = function() { var timer, i = 0, timers = jQuery.timers; fxNow = Date.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Run the timer and safely remove it when done (allowing for external removal) if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { jQuery.timers.push( timer ); jQuery.fx.start(); }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( inProgress ) { return; } inProgress = true; schedule(); }; jQuery.fx.stop = function() { inProgress = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Based off of the plugin by Clint Helfers, with permission. // https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ jQuery.fn.delay = function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = window.setTimeout( next, time ); hooks.stop = function() { window.clearTimeout( timeout ); }; } ); }; ( function() { var input = document.createElement( "input" ), select = document.createElement( "select" ), opt = select.appendChild( document.createElement( "option" ) ); input.type = "checkbox"; // Support: Android <=4.3 only // Default value for a checkbox should be "on" support.checkOn = input.value !== ""; // Support: IE <=11 only // Must access selectedIndex to make default options select support.optSelected = opt.selected; // Support: IE <=11 only // An input loses its value after becoming a radio input = document.createElement( "input" ); input.value = "t"; input.type = "radio"; support.radioValue = input.value === "t"; } )(); var boolHook, attrHandle = jQuery.expr.attrHandle; jQuery.fn.extend( { attr: function( name, value ) { return access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each( function() { jQuery.removeAttr( this, name ); } ); } } ); jQuery.extend( { attr: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set attributes on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } // Attribute hooks are determined by the lowercase version // Grab necessary hook if one is defined if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { hooks = jQuery.attrHooks[ name.toLowerCase() ] || ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); return; } if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } elem.setAttribute( name, value + "" ); return value; } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } ret = jQuery.find.attr( elem, name ); // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; }, attrHooks: { type: { set: function( elem, value ) { if ( !support.radioValue && value === "radio" && nodeName( elem, "input" ) ) { var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } }, removeAttr: function( elem, value ) { var name, i = 0, // Attribute names can contain non-HTML whitespace characters // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 attrNames = value && value.match( rnothtmlwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( ( name = attrNames[ i++ ] ) ) { elem.removeAttribute( name ); } } } } ); // Hooks for boolean attributes boolHook = { set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else { elem.setAttribute( name, name ); } return name; } }; jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { var getter = attrHandle[ name ] || jQuery.find.attr; attrHandle[ name ] = function( elem, name, isXML ) { var ret, handle, lowercaseName = name.toLowerCase(); if ( !isXML ) { // Avoid an infinite loop by temporarily removing this function from the getter handle = attrHandle[ lowercaseName ]; attrHandle[ lowercaseName ] = ret; ret = getter( elem, name, isXML ) != null ? lowercaseName : null; attrHandle[ lowercaseName ] = handle; } return ret; }; } ); var rfocusable = /^(?:input|select|textarea|button)$/i, rclickable = /^(?:a|area)$/i; jQuery.fn.extend( { prop: function( name, value ) { return access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { return this.each( function() { delete this[ jQuery.propFix[ name ] || name ]; } ); } } ); jQuery.extend( { prop: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set properties on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } return ( elem[ name ] = value ); } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } return elem[ name ]; }, propHooks: { tabIndex: { get: function( elem ) { // Support: IE <=9 - 11 only // elem.tabIndex doesn't always return the // correct value when it hasn't been explicitly set // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ // Use proper attribute retrieval(#12072) var tabindex = jQuery.find.attr( elem, "tabindex" ); if ( tabindex ) { return parseInt( tabindex, 10 ); } if ( rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ) { return 0; } return -1; } } }, propFix: { "for": "htmlFor", "class": "className" } } ); // Support: IE <=11 only // Accessing the selectedIndex property // forces the browser to respect setting selected // on the option // The getter ensures a default option is selected // when in an optgroup // eslint rule "no-unused-expressions" is disabled for this code // since it considers such accessions noop if ( !support.optSelected ) { jQuery.propHooks.selected = { get: function( elem ) { /* eslint no-unused-expressions: "off" */ var parent = elem.parentNode; if ( parent && parent.parentNode ) { parent.parentNode.selectedIndex; } return null; }, set: function( elem ) { /* eslint no-unused-expressions: "off" */ var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } } }; } jQuery.each( [ "tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable" ], function() { jQuery.propFix[ this.toLowerCase() ] = this; } ); // Strip and collapse whitespace according to HTML spec // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace function stripAndCollapse( value ) { var tokens = value.match( rnothtmlwhite ) || []; return tokens.join( " " ); } function getClass( elem ) { return elem.getAttribute && elem.getAttribute( "class" ) || ""; } function classesToArray( value ) { if ( Array.isArray( value ) ) { return value; } if ( typeof value === "string" ) { return value.match( rnothtmlwhite ) || []; } return []; } jQuery.fn.extend( { addClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); } ); } classes = classesToArray( value ); if ( classes.length ) { while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } // Only assign if different to avoid unneeded rendering. finalValue = stripAndCollapse( cur ); if ( curValue !== finalValue ) { elem.setAttribute( "class", finalValue ); } } } } return this; }, removeClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); } ); } if ( !arguments.length ) { return this.attr( "class", "" ); } classes = classesToArray( value ); if ( classes.length ) { while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) > -1 ) { cur = cur.replace( " " + clazz + " ", " " ); } } // Only assign if different to avoid unneeded rendering. finalValue = stripAndCollapse( cur ); if ( curValue !== finalValue ) { elem.setAttribute( "class", finalValue ); } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isValidValue = type === "string" || Array.isArray( value ); if ( typeof stateVal === "boolean" && isValidValue ) { return stateVal ? this.addClass( value ) : this.removeClass( value ); } if ( isFunction( value ) ) { return this.each( function( i ) { jQuery( this ).toggleClass( value.call( this, i, getClass( this ), stateVal ), stateVal ); } ); } return this.each( function() { var className, i, self, classNames; if ( isValidValue ) { // Toggle individual class names i = 0; self = jQuery( this ); classNames = classesToArray( value ); while ( ( className = classNames[ i++ ] ) ) { // Check each className given, space separated list if ( self.hasClass( className ) ) { self.removeClass( className ); } else { self.addClass( className ); } } // Toggle whole class name } else if ( value === undefined || type === "boolean" ) { className = getClass( this ); if ( className ) { // Store className if set dataPriv.set( this, "__className__", className ); } // If the element has a class name or if we're passed `false`, // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. if ( this.setAttribute ) { this.setAttribute( "class", className || value === false ? "" : dataPriv.get( this, "__className__" ) || "" ); } } } ); }, hasClass: function( selector ) { var className, elem, i = 0; className = " " + selector + " "; while ( ( elem = this[ i++ ] ) ) { if ( elem.nodeType === 1 && ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { return true; } } return false; } } ); var rreturn = /\r/g; jQuery.fn.extend( { val: function( value ) { var hooks, ret, valueIsFunction, elem = this[ 0 ]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && ( ret = hooks.get( elem, "value" ) ) !== undefined ) { return ret; } ret = elem.value; // Handle most common string cases if ( typeof ret === "string" ) { return ret.replace( rreturn, "" ); } // Handle cases where value is null/undef or number return ret == null ? "" : ret; } return; } valueIsFunction = isFunction( value ); return this.each( function( i ) { var val; if ( this.nodeType !== 1 ) { return; } if ( valueIsFunction ) { val = value.call( this, i, jQuery( this ).val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( Array.isArray( val ) ) { val = jQuery.map( val, function( value ) { return value == null ? "" : value + ""; } ); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } } ); } } ); jQuery.extend( { valHooks: { option: { get: function( elem ) { var val = jQuery.find.attr( elem, "value" ); return val != null ? val : // Support: IE <=10 - 11 only // option.text throws exceptions (#14686, #14858) // Strip and collapse whitespace // https://html.spec.whatwg.org/#strip-and-collapse-whitespace stripAndCollapse( jQuery.text( elem ) ); } }, select: { get: function( elem ) { var value, option, i, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one", values = one ? null : [], max = one ? index + 1 : options.length; if ( index < 0 ) { i = max; } else { i = one ? index : 0; } // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // Support: IE <=9 only // IE8-9 doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup !option.disabled && ( !option.parentNode.disabled || !nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var optionSet, option, options = elem.options, values = jQuery.makeArray( value ), i = options.length; while ( i-- ) { option = options[ i ]; /* eslint-disable no-cond-assign */ if ( option.selected = jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 ) { optionSet = true; } /* eslint-enable no-cond-assign */ } // Force browsers to behave consistently when non-matching value is set if ( !optionSet ) { elem.selectedIndex = -1; } return values; } } } } ); // Radios and checkboxes getter/setter jQuery.each( [ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { set: function( elem, value ) { if ( Array.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); } } }; if ( !support.checkOn ) { jQuery.valHooks[ this ].get = function( elem ) { return elem.getAttribute( "value" ) === null ? "on" : elem.value; }; } } ); // Return jQuery for attributes-only inclusion support.focusin = "onfocusin" in window; var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, stopPropagationCallback = function( e ) { e.stopPropagation(); }; jQuery.extend( jQuery.event, { trigger: function( event, data, elem, onlyHandlers ) { var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, eventPath = [ elem || document ], type = hasOwn.call( event, "type" ) ? event.type : event, namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; cur = lastElement = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf( "." ) > -1 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split( "." ); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf( ":" ) < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) event.isTrigger = onlyHandlers ? 2 : 3; event.namespace = namespaces.join( "." ); event.rnamespace = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === ( elem.ownerDocument || document ) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { lastElement = cur; event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && dataPriv.get( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && handle.apply && acceptData( cur ) ) { event.result = handle.apply( cur, data ); if ( event.result === false ) { event.preventDefault(); } } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( ( !special._default || special._default.apply( eventPath.pop(), data ) === false ) && acceptData( elem ) ) { // Call a native DOM method on the target with the same name as the event. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; if ( event.isPropagationStopped() ) { lastElement.addEventListener( type, stopPropagationCallback ); } elem[ type ](); if ( event.isPropagationStopped() ) { lastElement.removeEventListener( type, stopPropagationCallback ); } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, // Piggyback on a donor event to simulate a different one // Used only for `focus(in | out)` events simulate: function( type, elem, event ) { var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true } ); jQuery.event.trigger( e, null, elem ); } } ); jQuery.fn.extend( { trigger: function( type, data ) { return this.each( function() { jQuery.event.trigger( type, data, this ); } ); }, triggerHandler: function( type, data ) { var elem = this[ 0 ]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } } } ); // Support: Firefox <=44 // Firefox doesn't have focus(in | out) events // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 // // Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 // focus(in | out) events fire after focus & blur events, // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order // Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 if ( !support.focusin ) { jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler on the document while someone wants focusin/focusout var handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); }; jQuery.event.special[ fix ] = { setup: function() { // Handle: regular nodes (via `this.ownerDocument`), window // (via `this.document`) & document (via `this`). var doc = this.ownerDocument || this.document || this, attaches = dataPriv.access( doc, fix ); if ( !attaches ) { doc.addEventListener( orig, handler, true ); } dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { var doc = this.ownerDocument || this.document || this, attaches = dataPriv.access( doc, fix ) - 1; if ( !attaches ) { doc.removeEventListener( orig, handler, true ); dataPriv.remove( doc, fix ); } else { dataPriv.access( doc, fix, attaches ); } } }; } ); } var location = window.location; var nonce = { guid: Date.now() }; var rquery = ( /\?/ ); // Cross-browser xml parsing jQuery.parseXML = function( data ) { var xml, parserErrorElem; if ( !data || typeof data !== "string" ) { return null; } // Support: IE 9 - 11 only // IE throws on parseFromString with invalid input. try { xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); } catch ( e ) {} parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; if ( !xml || parserErrorElem ) { jQuery.error( "Invalid XML: " + ( parserErrorElem ? jQuery.map( parserErrorElem.childNodes, function( el ) { return el.textContent; } ).join( "\n" ) : data ) ); } return xml; }; var rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; function buildParams( prefix, obj, traditional, add ) { var name; if ( Array.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", v, traditional, add ); } } ); } else if ( !traditional && toType( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } // Serialize an array of form elements or a set of // key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, valueOrFunction ) { // If value is a function, invoke it and use its return value var value = isFunction( valueOrFunction ) ? valueOrFunction() : valueOrFunction; s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value == null ? "" : value ); }; if ( a == null ) { return ""; } // If an array was passed in, assume that it is an array of form elements. if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); } ); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ); }; jQuery.fn.extend( { serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map( function() { // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; } ).filter( function() { var type = this.type; // Use .is( ":disabled" ) so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); } ).map( function( _i, elem ) { var val = jQuery( this ).val(); if ( val == null ) { return null; } if ( Array.isArray( val ) ) { return jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ); } return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ).get(); } } ); var r20 = /%20/g, rhash = /#.*$/, rantiCache = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat( "*" ), // Anchor tag for parsing the document origin originAnchor = document.createElement( "a" ); originAnchor.href = location.href; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; if ( isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( ( dataType = dataTypes[ i++ ] ) ) { // Prepend if requested if ( dataType[ 0 ] === "+" ) { dataType = dataType.slice( 1 ) || "*"; ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); // Otherwise append } else { ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } } ); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var key, deep, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } /* Handles responses to an ajax request: * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var ct, type, finalDataType, firstDataType, contents = s.contents, dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process while ( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } /* Chain conversions given the request and the original response * Also sets the responseXXX fields on the jqXHR instance */ function ajaxConvert( s, response, jqXHR, isSuccess ) { var conv2, current, conv, tmp, prev, converters = {}, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } current = dataTypes.shift(); // Convert to each sequential dataType while ( current ) { if ( s.responseFields[ current ] ) { jqXHR[ s.responseFields[ current ] ] = response; } // Apply the dataFilter if provided if ( !prev && isSuccess && s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } prev = current; current = dataTypes.shift(); if ( current ) { // There's only work to do if current dataType is non-auto if ( current === "*" ) { current = prev; // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split( " " ); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.unshift( tmp[ 1 ] ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s.throws ) { response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } } } return { state: "success", data: response }; } jQuery.extend( { // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: location.href, type: "GET", isLocal: rlocalProtocol.test( location.protocol ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": JSON.parse, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var transport, // URL without anti-cache param cacheURL, // Response headers responseHeadersString, responseHeaders, // timeout handle timeoutTimer, // Url cleanup var urlAnchor, // Request state (becomes false upon send and true upon completion) completed, // To know if global events are to be dispatched fireGlobals, // Loop variable i, // uncached part of the url uncached, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks( "once memory" ), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( completed ) { if ( !responseHeaders ) { responseHeaders = {}; while ( ( match = rheaders.exec( responseHeadersString ) ) ) { responseHeaders[ match[ 1 ].toLowerCase() + " " ] = ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) .concat( match[ 2 ] ); } } match = responseHeaders[ key.toLowerCase() + " " ]; } return match == null ? null : match.join( ", " ); }, // Raw string getAllResponseHeaders: function() { return completed ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { if ( completed == null ) { name = requestHeadersNames[ name.toLowerCase() ] = requestHeadersNames[ name.toLowerCase() ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( completed == null ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( completed ) { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } else { // Lazy-add the new callbacks in a way that preserves old ones for ( code in map ) { statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ); // Add protocol if not provided (prefilters might expect it) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || location.href ) + "" ) .replace( rprotocol, location.protocol + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; // A cross-domain request is in order when the origin doesn't match the current origin. if ( s.crossDomain == null ) { urlAnchor = document.createElement( "a" ); // Support: IE <=8 - 11, Edge 12 - 15 // IE throws exception on accessing the href property if url is malformed, // e.g. http://example.com:80x/ try { urlAnchor.href = s.url; // Support: IE <=8 - 11 only // Anchor's host property isn't correctly set when s.url is relative urlAnchor.href = urlAnchor.href; s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== urlAnchor.protocol + "//" + urlAnchor.host; } catch ( e ) { // If there is an error parsing the URL, assume it is crossDomain, // it can be rejected by the transport if it is invalid s.crossDomain = true; } } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( completed ) { return jqXHR; } // We can fire global events as of now if asked to // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) fireGlobals = jQuery.event && s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger( "ajaxStart" ); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on // Remove hash to simplify url manipulation cacheURL = s.url.replace( rhash, "" ); // More options handling for requests with no content if ( !s.hasContent ) { // Remember the hash so we can put it back uncached = s.url.slice( cacheURL.length ); // If data is available and should be processed, append data to url if ( s.data && ( s.processData || typeof s.data === "string" ) ) { cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add or update anti-cache param if needed if ( s.cache === false ) { cacheURL = cacheURL.replace( rantiCache, "$1" ); uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + uncached; } // Put hash and anti-cache on the URL that will be requested (gh-1732) s.url = cacheURL + uncached; // Change '%20' to '+' if this is encoded form body content (gh-2658) } else if ( s.data && s.processData && ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { s.data = s.data.replace( r20, "+" ); } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { // Abort if not done already and return return jqXHR.abort(); } // Aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds completeDeferred.add( s.complete ); jqXHR.done( s.success ); jqXHR.fail( s.error ); // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // If request was aborted inside ajaxSend, stop there if ( completed ) { return jqXHR; } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = window.setTimeout( function() { jqXHR.abort( "timeout" ); }, s.timeout ); } try { completed = false; transport.send( requestHeaders, done ); } catch ( e ) { // Rethrow post-completion exceptions if ( completed ) { throw e; } // Propagate others as results done( -1, e ); } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Ignore repeat invocations if ( completed ) { return; } completed = true; // Clear timeout if it exists if ( timeoutTimer ) { window.clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Determine if successful isSuccess = status >= 200 && status < 300 || status === 304; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // Use a noop converter for missing script but not if jsonp if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 && jQuery.inArray( "json", s.dataTypes ) < 0 ) { s.converters[ "text script" ] = function() {}; } // Convert no matter what (that way responseXXX fields are always set) response = ajaxConvert( s, response, jqXHR, isSuccess ); // If successful, handle type chaining if ( isSuccess ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader( "Last-Modified" ); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader( "etag" ); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // if no content if ( status === 204 || s.type === "HEAD" ) { statusText = "nocontent"; // if not modified } else if ( status === 304 ) { statusText = "notmodified"; // If we have data, let's convert it } else { statusText = response.state; success = response.data; error = response.error; isSuccess = !error; } } else { // Extract error from statusText and normalize for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger( "ajaxStop" ); } } } return jqXHR; }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); } } ); jQuery.each( [ "get", "post" ], function( _i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // Shift arguments if data argument was omitted if ( isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } // The url can be an options object (which then must have .url) return jQuery.ajax( jQuery.extend( { url: url, type: method, dataType: type, data: data, success: callback }, jQuery.isPlainObject( url ) && url ) ); }; } ); jQuery.ajaxPrefilter( function( s ) { var i; for ( i in s.headers ) { if ( i.toLowerCase() === "content-type" ) { s.contentType = s.headers[ i ] || ""; } } } ); jQuery._evalUrl = function( url, options, doc ) { return jQuery.ajax( { url: url, // Make this explicit, since user can override this through ajaxSetup (#11264) type: "GET", dataType: "script", cache: true, async: false, global: false, // Only evaluate the response if it is successful (gh-4126) // dataFilter is not invoked for failure responses, so using it instead // of the default converter is kludgy but it works. converters: { "text script": function() {} }, dataFilter: function( response ) { jQuery.globalEval( response, options, doc ); } } ); }; jQuery.fn.extend( { wrapAll: function( html ) { var wrap; if ( this[ 0 ] ) { if ( isFunction( html ) ) { html = html.call( this[ 0 ] ); } // The elements to wrap the target around wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); if ( this[ 0 ].parentNode ) { wrap.insertBefore( this[ 0 ] ); } wrap.map( function() { var elem = this; while ( elem.firstElementChild ) { elem = elem.firstElementChild; } return elem; } ).append( this ); } return this; }, wrapInner: function( html ) { if ( isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapInner( html.call( this, i ) ); } ); } return this.each( function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } } ); }, wrap: function( html ) { var htmlIsFunction = isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); } ); }, unwrap: function( selector ) { this.parent( selector ).not( "body" ).each( function() { jQuery( this ).replaceWith( this.childNodes ); } ); return this; } } ); jQuery.expr.pseudos.hidden = function( elem ) { return !jQuery.expr.pseudos.visible( elem ); }; jQuery.expr.pseudos.visible = function( elem ) { return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); }; jQuery.ajaxSettings.xhr = function() { try { return new window.XMLHttpRequest(); } catch ( e ) {} }; var xhrSuccessStatus = { // File protocol always yields status code 0, assume 200 0: 200, // Support: IE <=9 only // #1450: sometimes IE returns 1223 when it should be 204 1223: 204 }, xhrSupported = jQuery.ajaxSettings.xhr(); support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); support.ajax = xhrSupported = !!xhrSupported; jQuery.ajaxTransport( function( options ) { var callback, errorCallback; // Cross domain only allowed if supported through XMLHttpRequest if ( support.cors || xhrSupported && !options.crossDomain ) { return { send: function( headers, complete ) { var i, xhr = options.xhr(); xhr.open( options.type, options.url, options.async, options.username, options.password ); // Apply custom fields if provided if ( options.xhrFields ) { for ( i in options.xhrFields ) { xhr[ i ] = options.xhrFields[ i ]; } } // Override mime type if needed if ( options.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( options.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { headers[ "X-Requested-With" ] = "XMLHttpRequest"; } // Set headers for ( i in headers ) { xhr.setRequestHeader( i, headers[ i ] ); } // Callback callback = function( type ) { return function() { if ( callback ) { callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null; if ( type === "abort" ) { xhr.abort(); } else if ( type === "error" ) { // Support: IE <=9 only // On a manual native abort, IE9 throws // errors on any property access that is not readyState if ( typeof xhr.status !== "number" ) { complete( 0, "error" ); } else { complete( // File: protocol always yields status 0; see #8605, #14207 xhr.status, xhr.statusText ); } } else { complete( xhrSuccessStatus[ xhr.status ] || xhr.status, xhr.statusText, // Support: IE <=9 only // IE9 has no XHR2 but throws on binary (trac-11426) // For XHR2 non-text, let the caller handle it (gh-2498) ( xhr.responseType || "text" ) !== "text" || typeof xhr.responseText !== "string" ? { binary: xhr.response } : { text: xhr.responseText }, xhr.getAllResponseHeaders() ); } } }; }; // Listen to events xhr.onload = callback(); errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); // Support: IE 9 only // Use onreadystatechange to replace onabort // to handle uncaught aborts if ( xhr.onabort !== undefined ) { xhr.onabort = errorCallback; } else { xhr.onreadystatechange = function() { // Check readyState before timeout as it changes if ( xhr.readyState === 4 ) { // Allow onerror to be called first, // but that will not handle a native abort // Also, save errorCallback to a variable // as xhr.onerror cannot be accessed window.setTimeout( function() { if ( callback ) { errorCallback(); } } ); } }; } // Create the abort callback callback = callback( "abort" ); try { // Do send the request (this may raise an exception) xhr.send( options.hasContent && options.data || null ); } catch ( e ) { // #14683: Only rethrow if this hasn't been notified as an error yet if ( callback ) { throw e; } } }, abort: function() { if ( callback ) { callback(); } } }; } } ); // Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) jQuery.ajaxPrefilter( function( s ) { if ( s.crossDomain ) { s.contents.script = false; } } ); // Install script dataType jQuery.ajaxSetup( { accepts: { script: "text/javascript, application/javascript, " + "application/ecmascript, application/x-ecmascript" }, contents: { script: /\b(?:java|ecma)script\b/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } } ); // Handle cache's special case and crossDomain jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; } } ); // Bind script tag hack transport jQuery.ajaxTransport( "script", function( s ) { // This transport only deals with cross domain or forced-by-attrs requests if ( s.crossDomain || s.scriptAttrs ) { var script, callback; return { send: function( _, complete ) { script = jQuery( " {% endfor %} {% endif %} ```{% endraw %} Next, add `page_js` to any page's YAML Front Matter to have your JavaScript loaded for that page. ```yaml page_js: - /path/to/your/custom.js ``` --- ================================================ FILE: docs/_docs/11-posts.md ================================================ --- title: "Working with Posts" permalink: /docs/posts/ excerpt: "Suggestions and Front Matter defaults for working with posts." last_modified_at: 2018-03-20T15:59:57-04:00 --- Posts are stored in the `_posts` directory and named according to the `YEAR-MONTH-DAY-title.MARKUP` format as per [the usual](https://jekyllrb.com/docs/posts/). Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. For example, the following are examples of valid post filenames: ``` 2016-07-20-writing-jekyll-posts.md 2015-01-03-static-site-generators.markdown ``` **Recommended Front Matter Defaults:** ```yaml defaults: # _posts - scope: path: "" type: posts values: layout: single author_profile: true read_time: true comments: true share: true related: true ``` Adding the above to `_config.yml` will assign the `single` layout and enable: *author profile*, *reading time*, *comments*, [*social sharing links*]({{ "/docs/layouts/#social-sharing-links" | relative_url }}), and *related posts*, for all posts. **ProTip:** Remember to write unique `excerpt` descriptions for each post for improved SEO and archive listings. {: .notice--info} ================================================ FILE: docs/_docs/12-pages.md ================================================ --- title: "Working with Pages" permalink: /docs/pages/ excerpt: "Suggestions and Front Matter defaults for working with pages." last_modified_at: 2016-11-03T11:13:12-04:00 --- To better organize all of your pages you can centralize them into a single location similar to posts and collections. **Step 1:** Start by placing pages (`.md` or `.html` files) into a `_pages` directory. Meaningfully naming files should be the goal. Avoid patterns like `/about/index.md` as it makes distinguishing between multiple `index.md` files harder. ```bash sample-project └── _pages/ ├── 404.md # custom 404 page ├── about.md # about page └── contact.md # contact page ``` **Step 2:** Include pages to be sure Jekyll "sees" and processes the files inside of `_pages`. Add `include: ["_pages"]` to `_config.yml`. **Step 3:** Assign permalink overrides in the YAML Front Matter of each. Examples: | filename | permalink | | -------- | --------- | | _pages/about.md | `permalink: /about/` | | _pages/home.md | `permalink: /` | | _pages/contact.md | `permalink: /contact/` | **Recommended Front Matter Defaults:** ```yaml defaults: # _pages - scope: path: "" type: pages values: layout: single author_profile: true ``` ================================================ FILE: docs/_docs/13-collections.md ================================================ --- title: "Working with Collections" permalink: /docs/collections/ excerpt: "Suggestions and Front Matter defaults for working with collections." last_modified_at: 2018-03-20T16:00:02-04:00 --- Collections like posts and pages work as you'd expect. If you're new to them be sure to read [Jekyll's documentation](https://jekyllrb.com/docs/collections/). The theme has been built with collections in mind and you will find [several examples]({{ "/collection-archive/" | relative_url }}) on the demo site ([portfolio]({{ "/portfolio/" | relative_url }}), [recipes]({{ "/recipes/" | relative_url }}), [pets]({{ "/pets/" | relative_url }})). **Collections in the Wild:** This set of documentation is also [built as a collection](https://github.com/{{ site.repository }}/blob/master/docs/_docs/) if you're looking for a fully fleshed out example to inspect. {: .notice--info} --- A popular use case for collections is to build a portfolio section as part of one's personal site. Let's quickly walk through the steps to do that. **Step 1:** Configure the portfolio collection by adding the following to `_config.yml`. ```yaml collections: portfolio: output: true permalink: /:collection/:path/ ``` These settings essentially say output `index.html` files for each portfolio document in `_portfolio` at `_site/portfolio//`. Just like posts and pages you'll probably want to set some defaults for the Front Matter: ```yaml defaults: # _portfolio - scope: path: "" type: portfolio values: layout: single author_profile: false share: true ``` Now make a portfolio.md file in the '_pages' folder. ```yaml --- title: Portfolio layout: collection permalink: /portfolio/ collection: portfolio entries_layout: grid classes: wide --- ``` And then create portfolio content like [`_portfolio/foo-bar-website.md`](https://github.com/{{ site.repository }}/blob/master/docs/_portfolio/foo-bar-website.md), to end up with something like this. ![portfolio collection example]({{ "/assets/images/mm-portfolio-collection-example.jpg" | relative_url }}) ================================================ FILE: docs/_docs/14-helpers.md ================================================ --- title: "Helpers" permalink: /docs/helpers/ excerpt: "Jekyll `_includes` and other helpers to use as shortcuts for creating archives, galleries, table of contents, and more." gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" feature_row: - image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--inverse" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." last_modified_at: 2020-05-01T10:22:56-04:00 toc: true toc_label: "Helpers" toc_icon: "cogs" --- You can think of these Jekyll helpers as little shortcuts. Since GitHub Pages doesn't allow most plugins --- [custom tags](https://jekyllrb.com/docs/plugins/#tags) are out. Instead the theme leverages [**includes**](https://jekyllrb.com/docs/templates/#includes) to do something similar. ## Group by array [Jekyll Group-By-Array](https://github.com/mushishi78/jekyll-group-by-array) by Max White. A liquid include file for Jekyll that allows an object to be grouped by an array. ## Figure Generate a `
` element with a single image and caption. | Include Parameter | Required | Description | | ----------------- | ------------ | ---------------------------------------------------------------------------------------------------- | | **image_path** | **Required** | Full path to image eg: `/assets/images/filename.jpg`. Use absolute URLS for those hosted externally. | | **alt** | Optional | Alternate text for image. | | **caption** | Optional | Figure caption text. Markdown is allowed. | | **popup** | Optional | Enable Magnific Popup on the image. | Using the `figure` include like so: ```liquid {% raw %}{% include figure popup=true image_path="/assets/images/unsplash-image-10.jpg" alt="this is a placeholder image" caption="This is a figure caption." %}{% endraw %} ``` Will output the following: {% include figure popup=true image_path="/assets/images/unsplash-image-10.jpg" alt="this is a placeholder image" caption="This is a figure caption." %} ```html
this is a placeholder image
This is a figure caption.
``` ## Gallery Generate a `
` element with optional caption of arrays with two or more images. To place a gallery add the necessary YAML Front Matter. | Name | Required | Description | | -------------- | ------------ | --------------------------------------------------------------------------------------------------------------------- | | **url** | Optional | URL to link gallery image to (eg. a larger detail image). | | **image_path** | **Required** | Full path to image eg: `/assets/images/filename.jpg`. Use absolute URLS for those hosted externally. | | **alt** | Optional | Alternate text for image. | | **title** | Optional | Title text for image. Will display as a caption in a Magnific Popup overlay when linked to a larger image with `url`. | ```yaml gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" ``` And then drop-in the gallery include in the body where you'd like it to appear. | Include Parameter | Required | Description | Default | | ----------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | | **id** | Optional | To add multiple galleries to a document uniquely name them in the YAML Front Matter and reference in `{% raw %}{% include gallery id="gallery_id" %}{% endraw %}` | `gallery` | | **layout** | Optional | Layout type. 2 column: `half`, 3 column: `third`, single column: `''` (blank) | Determined by gallery size. Two items: `half`, three or more items: `third`. | | **class** | Optional | Use to add a `class` attribute to the surrounding `
` element for additional styling needs. | | | **caption** | Optional | Gallery caption description. Markdown is allowed. | | ```liquid {% raw %}{% include gallery caption="This is a sample gallery with **Markdown support**." %}{% endraw %} ``` **Gallery example with caption:** {% include gallery caption="This is a sample gallery with **Markdown support**." %} **More Gallery Goodness:** A few more examples and [source code](https://github.com/{{ site.repository }}/blob/master/docs/\_posts/2010-09-09-post-gallery.md) can be seen in [this sample gallery post]({{ "" | relative_url }}{% post_url 2010-09-09-post-gallery %}). {: .notice--info} ## Feature row Designed to compliment the [`splash`]({{ "/docs/layouts/#splash-page-layout" | relative_url }}) page layout as a way of arranging and aligning "feature blocks" containing text or image. To add a feature row containing three content blocks with text and image, add the following YAML Front Matter | Name | Required | Description | Default | | ----------------- | ------------ | ---------------------------------------------------------------------------------------------------- | ---------------------------------- | | **image_path** | **Required** | Full path to image eg: `/assets/images/filename.jpg`. Use absolute URLS for those hosted externally. | | | **image_caption** | Optional | Caption for image, Markdown is supported eg: `"Image from [Unsplash](https://unsplash.com)"` | | **alt** | Optional | Alternate text for image. | | | **title** | Optional | Content block title. | | | **excerpt** | Optional | Content block excerpt text. Markdown is allowed. | | | **url** | Optional | URL that the button should link to. | | | **btn_label** | Optional | Button text label. | `more_label` in UI Text data file. | | **btn_class** | Optional | Button style. See [utility classes]({{ "/docs/utility-classes/#buttons" | relative_url }}) for options. | `btn` | ```yaml feature_row: - image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--inverse" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." ``` And then drop-in the feature row include in the body where you'd like it to appear. | Include Parameter | Required | Description | Default | | ----------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | | **id** | Optional | To add multiple rows to a document uniquely name them in the YAML Front Matter and reference in `{% raw %}{% include feature_row id="row2" %}{% endraw %}` | `feature_row` | | **type** | Optional | Alignment of the featured blocks in the row. Options include: `left`, `center`, or `right` aligned. | | ```liquid {% raw %}{% include feature_row %}{% endraw %} ``` {% include feature_row %} **More Feature Row Goodness:** A [few more examples]({{ "/splash-page/" | relative_url }}) and [source code](https://github.com/{{ site.repository }}/blob/master/docs/\_pages/splash-page.md) can be seen in the demo site. {: .notice--info} ## Responsive video embed Embed a video from YouTube, Vimeo, Google Drive, or bilibili that responsively sizes to fit the width of its parent. To help with GDPR compliance, the theme is using the privacy enhanced version of YouTube and Vimeo providers out of the box. | Parameter | Required | Description | | ---------- | ------------ | ---------------------------------------------------------- | | `id` | **Required** | ID of the video | | `provider` | **Required** | Hosting provider of the video: `youtube`, `vimeo`, `google-drive`, or `bilibili` | | `danmaku` | Optional | Bilibili only, [details below](#Bilibili) | ### YouTube To embed the following YouTube video at url `https://www.youtube.com/watch?v=-PVofD2A9t8` (long version) or `https://youtu.be/-PVofD2A9t8` (short version) into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="-PVofD2A9t8" provider="youtube" %}{% endraw %} ``` {% include video id="-PVofD2A9t8" provider="youtube" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: -PVofD2A9t8 provider: youtube ``` **Tip:** if you'd like to start the video at a particular timestamp, you can append `?start=110` (for instance) to the video `id` in order to have the video start at 1:50. {: .notice--info } ### Vimeo To embed the following Vimeo video at url `https://vimeo.com/212731897` into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="212731897" provider="vimeo" %}{% endraw %} ``` {% include video id="212731897" provider="vimeo" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: 212731897 provider: vimeo ``` ### Google Drive To embed the following Google Drive video at url `https://drive.google.com/file/d/1u41lIbMLbV53PvMbyYc9HzvBug5lNWaO/preview` into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="1u41lIbMLbV53PvMbyYc9HzvBug5lNWaO" provider="google-drive" %}{% endraw %} ``` {% include video id="1u41lIbMLbV53PvMbyYc9HzvBug5lNWaO" provider="google-drive" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: 212731897 provider: google-drive ``` ### Bilibili To embed the following Bilibili video at url `https://www.bilibili.com/video/BV1E7411e7hC` into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="BV1E7411e7hC" provider="bilibili" %}{% endraw %} ``` If you want to enable danmaku (弹幕) for the embedded video, which is disabled by default, you can supply an additional parameter `danmaku="1"` as shown below: ```liquid {% raw %}{% include video id="BV1E7411e7hC" provider="bilibili" danmaku="1" %}{% endraw %} ``` To embed it as a video header you'd use the following YAML Front Matter: ```yaml header: video: id: BV1E7411e7hC provider: bilibili danmaku: 1 ``` ## Table of contents Auto-generated table of contents list for your posts and pages can be enabled using two methods. ![table of contents example]({{ "/assets/images/mm-toc-helper-example.jpg" | relative_url }}) ### Enabled via YAML Front Matter Add `toc: true` to the YAML Front Matter of any post or page. | Parameter | Required | Description | Default | | -------------- | -------- | ----------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **toc** | Optional | Show table of contents. (boolean) | `false` | | **toc_label** | Optional | Table of contents title. (string) | `toc_label` in UI Text data file. | | **toc_icon** | Optional | Table of contents icon, displays before the title. (string) | [Font Awesome](https://fontawesome.com/v6/search?s=solid&m=free) **file-alt** icon. Other FA icons can be used instead. | | **toc_sticky** | Optional | Stick table of contents to top of screen. | `false` | **TOC example with custom title and icon** ```yaml toc: true toc_label: "My Table of Contents" toc_icon: "cog" --- ``` **Note:** using both methods will have unintended results. Be sure to remove `{% raw %}{% include toc %}{% endraw %}` placed table of contents from your content when using `toc: true`. {: .notice--warning } {% capture notice-text %} **Note:** You need to use contiguous levels of headings for the TOC to generate properly. For example: ```markdown Good headings: # Heading ## Heading ### Heading ### Heading # Heading ## Heading Bad headings: # Heading ### Heading (skipped H2) ##### Heading (skipped H4) ``` {% endcapture %}
{{ notice-text | markdownify }}
### Enabled via `toc` include (deprecated) To include a Kramdown [auto-generated table of contents](https://kramdown.gettalong.org/converter/html.html#toc) for posts and pages, add the following helper to your content. ```liquid {% raw %}{% include toc %}{% endraw %} ``` **Note:** this method only works with Markdown files. {: .notice--warning} **Deprecated:** `toc` helper will be removed in the next major version of the theme. It is encouraged that you migrate to the YAML Front Matter method above. {: .notice--danger} | Parameter | Required | Description | Default | | --------- | -------- | ----------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **title** | Optional | Table of contents title. (string) | `toc_label` in UI Text data file. | | **icon** | Optional | Table of contents icon, displays before the title. (string) | [Font Awesome](https://fontawesome.com/v6/search?s=solid&m=free) **file-alt** icon. Other FA icons can be used instead. | **TOC example with custom title and icon** ```liquid {% raw %}{% include toc icon="cog" title="My Table of Contents" %}{% endraw %} ``` ## Navigation list Include an unordered list of links to be used as sidebar navigation with the `nav_list` helper. **1.** Start by adding a set of titles and URLs to `_data/navigation.yml` in the same way the [`main` navigation]({{ "/docs/navigation/" | relative_url }}) is built. `foo` navigation example: ```yaml # _data/navigation.yml foo: - title: "Link 1 Title" url: /link-1-page-url/ - title: "Link 2 Title" url: http://external-link.com - title: "Link 3 Title" url: /link-3-page-url/ - title: "Link 4 Title" url: /link-4-page-url/ ``` For a navigation list that has child pages you'd structure the YAML like this: ```yaml # _data/navigation.yml foo: - title: "Parent Link 1" url: /parent-1-page-url/ children: - title: "Child Link 1" url: /child-1-page-url/ - title: "Child Link 2" url: /child-2-page-url/ - title: "Parent Link 2" url: /parent-2-page-url/ children: - title: "Child Link 1" url: /child-1-page-url/ - title: "Child Link 2" url: /child-2-page-url/ - title: "Child Link 3" url: /child-3-page-url/ ``` **2:** On the page(s) you'd like the `foo` sidebar nav add the following YAML Front Matter, referencing the same key name. ```yaml sidebar: nav: "foo" ``` **ProTip:** If you're applying the same navigation list to several pages setting it as a [Front Matter default](https://jekyllrb.com/docs/configuration/#front-matter-defaults) is the better option. {: .notice--info} The theme's documentation is built with the `nav_list` helper so if you'd like an example to dissect take a look at `navigation.yml`, `_config.yml` and `_doc` collection in the [`/docs/` folder](https://github.com/{{ site.repository }}/tree/master/docs/) of this repo. To add a navigation list to a post or page's main content instead of the sidebar use the include this way: ```liquid {% raw %}{% include nav_list nav="foo" %}{% endraw %} ``` {% include nav_list nav="foo" %} | Parameter | Required | Description | | --------- | ------------ | -------------------------------------------------------- | | items | **Required** | Name of the links array found in `_data/navigation.yml`. | ================================================ FILE: docs/_docs/15-utility-classes.md ================================================ --- title: "Utility Classes" permalink: /docs/utility-classes/ excerpt: "CSS classes for aligning text/image, styling buttons and notices, and more." last_modified_at: 2018-11-25T19:46:43-05:00 toc: true toc_label: "Utility Classes" toc_icon: "cogs" --- Using the Kramdown Markdown renderer with Jekyll allows you to add [block](http://kramdown.gettalong.org/quickref.html#block-attributes) and [inline attributes](http://kramdown.gettalong.org/quickref.html#inline-attributes). This is nice if you want to add custom styling to text and image, and still write in Markdown. **Jekyll 3:** Kramdown is the default for `jekyll new` sites and those hosted on GitHub Pages. Not using Kramdown? That's OK. The following classes are still available when used with standard HTML. {: .notice--warning} ## Text alignment Align text blocks with the following classes. Left aligned text `.text-left` {: .text-left} ```markdown Left aligned text {: .text-left} ``` --- Center aligned text. `.text-center` {: .text-center} ```markdown Center aligned text. {: .text-center} ``` --- Right aligned text. `.text-right` {: .text-right} ```markdown Right aligned text. {: .text-right} ``` --- **Justified text.** `.text-justify` Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vel eleifend odio, eu elementum purus. In hac habitasse platea dictumst. Fusce sed sapien eleifend, sollicitudin neque non, faucibus est. Proin tempus nisi eu arcu facilisis, eget venenatis eros consequat. {: .text-justify} ```markdown Justified text. {: .text-justify} ``` --- No wrap text. `.text-nowrap` {: .text-nowrap} ```markdown No wrap text. {: .text-nowrap} ``` ## Image alignment Position images with the following classes. ![image-center]({{ "/assets/images/image-alignment-580x300.jpg" | relative_url }}){: .align-center} The image above happens to be **centered**. ```markdown ![image-center](/assets/images/filename.jpg){: .align-center} ``` --- ![image-left]({{ "/assets/images/image-alignment-150x150.jpg" | relative_url }}){: .align-left} The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. There should be plenty of room above, below, and to the right of the image. Just look at him there --- Hey guy! Way to rock that left side. I don't care what the right aligned image says, you look great. Don't let anyone else tell you differently. ```markdown ![image-left](/assets/images/filename.jpg){: .align-left} ``` --- ![image-right]({{ "/assets/images/image-alignment-300x200.jpg" | relative_url }}){: .align-right} And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. ```markdown ![image-right](/assets/images/filename.jpg){: .align-right} ``` --- ![full]({{ "/assets/images/image-alignment-1200x4002.jpg" | relative_url }}) {: .full} The image above should extend outside of the parent container on right. ```markdown ![full](/assets/images/filename.jpg) {: .full} ``` ## Buttons Make any link standout more when applying the `.btn .btn--primary` classes. ```html Link Text ``` | Button Type | Example | Class | Kramdown | | ------ | ------- | ----- | ------- | | Default | [Text](#link){: .btn} | `.btn` | `[Text](#link){: .btn}` | | Primary | [Text](#link){: .btn .btn--primary} | `.btn .btn--primary` | `[Text](#link){: .btn .btn--primary}` | | Success | [Text](#link){: .btn .btn--success} | `.btn .btn--success` | `[Text](#link){: .btn .btn--success}` | | Warning | [Text](#link){: .btn .btn--warning} | `.btn .btn--warning` | `[Text](#link){: .btn .btn--warning}` | | Danger | [Text](#link){: .btn .btn--danger} | `.btn .btn--danger` | `[Text](#link){: .btn .btn--danger}` | | Info | [Text](#link){: .btn .btn--info} | `.btn .btn--info` | `[Text](#link){: .btn .btn--info}` | | Inverse | [Text](#link){: .btn .btn--inverse} | `.btn .btn--inverse` | `[Text](#link){: .btn .btn--inverse}` | | Light Outline | [Text](#link){: .btn .btn--light-outline} | `.btn .btn--light-outline` | `[Text](#link){: .btn .btn--light-outline}` | | Button Size | Example | Class | Kramdown | | ----------- | ------- | ----- | -------- | | X-Large | [X-Large Button](#){: .btn .btn--primary .btn--x-large} | `.btn .btn--primary .btn--x-large` | `[Text](#link){: .btn .btn--primary .btn--x-large}` | | Large | [Large Button](#){: .btn .btn--primary .btn--large} | `.btn .btn--primary .btn--large` | `[Text](#link){: .btn .btn--primary .btn--large}` | | Default | [Default Button](#){: .btn .btn--primary} | `.btn .btn--primary` | `[Text](#link){: .btn .btn--primary }` | | Small | [Small Button](#){: .btn .btn--primary .btn--small} | `.btn .btn--primary .btn--small` | `[Text](#link){: .btn .btn--primary .btn--small}` | ## Notices Call attention to a block of text. | Notice Type | Class | | ----------- | ----- | | Default | `.notice` | | Primary | `.notice--primary` | | Info | `.notice--info` | | Warning | `.notice--warning` | | Success | `.notice--success` | | Danger | `.notice--danger` | **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice}` class. {: .notice} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--primary}` class. {: .notice--primary} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--info}` class. {: .notice--info} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--warning}` class. {: .notice--warning} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--success}` class. {: .notice--success} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--danger}` class. {: .notice--danger} {% capture notice-text %} You can also add the `.notice` class to a `
` element. * Bullet point 1 * Bullet point 2 {% endcapture %}

Notice Headline:

{{ notice-text | markdownify }}
================================================ FILE: docs/_docs/16-stylesheets.md ================================================ --- title: "Stylesheets" permalink: /docs/stylesheets/ excerpt: "Instructions for customizing and building the theme's stylesheets." last_modified_at: 2018-11-25T19:47:43-05:00 toc: true --- The theme's `assets/css/main.css` file is built from several SCSS partials located in [`_sass/`](https://github.com/mmistakes/minimal-mistakes/tree/master/_sass) and is structured as follows: ```bash minimal-mistakes ├── _sass | └── minimal-mistakes | ├── vendor # vendor SCSS partials | | ├── breakpoint # media query mixins | | ├── magnific-popup # Magnific Popup lightbox | | └── susy # Susy grid system | ├── _animations.scss # animations | ├── _archive.scss # archives (list, grid, feature views) | ├── _base.scss # base HTML elements | ├── _buttons.scss # buttons | ├── _footer.scss # footer | ├── _masthead.scss # masthead | ├── _mixins.scss # mixins (em function, clearfix) | ├── _navigation.scss # nav links (breadcrumb, priority+, toc, pagination, etc.) | ├── _notices.scss # notices | ├── _page.scss # pages | ├── _print.scss # print styles | ├── _reset.scss # reset | ├── _sidebar.scss # sidebar | ├── _syntax.scss # syntax highlighting | ├── _tables.scss # tables | ├── _utilities.scss # utility classes (text/image alignment) | └── _variables.scss # theme defaults (fonts, colors, etc.) ├── assets | ├── css | | └── main.scss # main stylesheet, loads SCSS partials in _sass ``` ## Customizing To override the default [Sass](http://sass-lang.com/guide) (located in theme's `_sass` directory), do one of the following: 1. Copy directly from the Minimal Mistakes theme gem - Go to your local Minimal Mistakes gem installation directory (run `bundle show minimal-mistakes-jekyll` to get the path to it). - Copy the contents of `/assets/css/main.scss` from there to ``. - Customize what you want inside `/assets/css/main.scss`. 2. Copy from this repo. - Copy the contents of [assets/css/main.scss](https://github.com/mmistakes/minimal-mistakes/blob/master/assets/css/main.scss) to ``. - Customize what you want inside `` due to the way Jekyll currently reads those files. To make basic tweaks to theme's style Sass variables can be overridden by adding to `/assets/css/main.scss`. For instance, to change the link color used throughout the theme add: ```scss $link-color: red; ``` Before any `@import` lines. ### Paragraph indention To mimic the look of type set in a printed book or manuscript you may want to enable paragraph indention. When `$paragraph-indent` is set to `true` indents are added to each sibling and the margin below each paragraph is removed.
indented paragraph example
Example of indented paragraphs.
The size of the indent can also be customized by changing the value of `$indent-var`. ### Font stacks By default the theme uses [system fonts](https://medium.com/designing-medium/system-shock-6b1dc6d6596f#.rb81vgn7i) for all of the font stacks (serif, sans-serif, and monospace). This is done in part to provide a clean base for you to build off of and to improve performance since we aren't loading any custom webfonts by default. ```scss /* system typefaces */ $serif : Georgia, Times, serif; $sans-serif : -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; $monospace : Monaco, Consolas, "Lucida Console", monospace; ``` Sans-serif fonts have been used for most of the type, with serifs reserved for captions. If you wish to change this you'll need to poke around the various `SCSS` partials and modify `font-family` declarations. **ProTip:** To use webfonts from services like [Adobe TypeKit](https://typekit.com/) or [Google Fonts](https://www.google.com/fonts) simply update the font stacks and then add their scripts to `_includes/head/custom.html`. {: .notice--info} #### Typography from older versions Not a fan of the refreshed typography of the theme and want to revert back an older version? Easy enough. **1.** Add this Google Fonts script to [`_includes/head/custom.html`](https://github.com/mmistakes/minimal-mistakes/blob/master/_includes/head/custom.html): ```html ``` **2.** Update the following SCSS variables: ```scss $serif : "PT Serif", Georgia, Times, serif; $sans-serif-narrow : "PT Sans Narrow", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; $global-font-family : $serif; $header-font-family : $sans-serif-narrow; ``` ### Type scale Wherever possible type scale variables have been used instead of writing out fixed sizes. This makes updating much easier by changing values in one file. Example: ```scss .page__lead { font-family: $global-font-family; font-size: $type-size-4; } ``` Type sizes are set in ems to proportional scale as the screen size changes. Large headlines that look great on desktop monitors will shrink ever so slightly as to not be too big on mobile devices. To adjust this hierarchy simply edit the default values: ```scss /* type scale */ $type-size-1 : 2.441em; // ~39.056px $type-size-2 : 1.953em; // ~31.248px $type-size-3 : 1.563em; // ~25.008px $type-size-4 : 1.25em; // ~20px $type-size-5 : 1em; // ~16px $type-size-6 : 0.75em; // ~12px $type-size-7 : 0.6875em; // ~11px $type-size-8 : 0.625em; // ~10px ``` ### Colors Change the mood of your site by altering a few color variables. `$body-color`, `$background-color`, `$text-color`, `$link-color`, and `$masthead-link-color` will have the most effect when changed. #### Syntax highlighting To make customizing the colors used in code highlighted blocks, a base of sixteen colors ([Base16](http://chriskempson.com/projects/base16/)) have been used. Code block colors can easily be changed by overriding any of the following color variables: ##### Default ![default-code-block]({{ '/assets/images/default-code-block.jpg' | relative_url }}) ```scss /* default syntax highlighting (base16) */ $base00: #263238; $base01: #2e3c43; $base02: #314549; $base03: #546e7a; $base04: #b2ccd6; $base05: #eeffff; $base06: #eeffff; $base07: #ffffff; $base08: #f07178; $base09: #f78c6c; $base0a: #ffcb6b; $base0b: #c3e88d; $base0c: #89ddff; $base0d: #82aaff; $base0e: #c792ea; $base0f: #ff5370; ``` ##### Solarized light ![solarized-light-code-block]({{ '/assets/images/solarized-light-code-block.jpg' | relative_url }}) ```scss /* solarized light syntax highlighting (base16) */ $base00: #fafafa !default; $base01: #073642 !default; $base02: #586e75 !default; $base03: #657b83 !default; $base04: #839496 !default; $base05: #586e75 !default; $base06: #eee8d5 !default; $base07: #fdf6e3 !default; $base08: #dc322f !default; $base09: #cb4b16 !default; $base0a: #b58900 !default; $base0b: #859900 !default; $base0c: #2aa198 !default; $base0d: #268bd2 !default; $base0e: #6c71c4 !default; $base0f: #d33682 !default; ``` ##### Contrast ![contrast-code-block]({{ '/assets/images/contrast-code-block.jpg' | relative_url }}) ```scss /* contrast syntax highlighting (base16) */ $base00: #000000; $base01: #242422; $base02: #484844; $base03: #6c6c66; $base04: #918f88; $base05: #b5b3aa; $base06: #d9d7cc; $base07: #fdfbee; $base08: #ff6c60; $base09: #e9c062; $base0a: #ffffb6; $base0b: #a8ff60; $base0c: #c6c5fe; $base0d: #96cbfe; $base0e: #ff73fd; $base0f: #b18a3d; ``` ##### Dark ![dark-code-block]({{ '/assets/images/dark-code-block.jpg' | relative_url }}) ```scss /* dark syntax highlighting (base16) */ $base00: #ffffff; $base01: #e0e0e0; $base02: #d0d0d0; $base03: #b0b0b0; $base04: #000000; $base05: #101010; $base06: #151515; $base07: #202020; $base08: #ff0086; $base09: #fd8900; $base0a: #aba800; $base0b: #00c918; $base0c: #1faaaa; $base0d: #3777e6; $base0e: #ad00a1; $base0f: #cc6633; ``` ##### Dirt ![dirt-code-block]({{ '/assets/images/dirt-code-block.jpg' | relative_url }}) ```scss /* dirt syntax highlighting (base16) */ $base00: #231e18; $base01: #302b25; $base02: #48413a; $base03: #9d8b70; $base04: #b4a490; $base05: #cabcb1; $base06: #d7c8bc; $base07: #e4d4c8; $base08: #d35c5c; $base09: #ca7f32; $base0a: #e0ac16; $base0b: #b7ba53; $base0c: #6eb958; $base0d: #88a4d3; $base0e: #bb90e2; $base0f: #b49368; ``` ##### Dracula ![dracula-code-block]({{ '/assets/images/dracula-code-block.jpg' | relative_url }}) ```scss /* dracula syntax highlighting (base16) */ /* https://github.com/dracula/base16-dracula-scheme */ $base00: #282936; $base01: #3a3c4e; $base02: #4d4f68; $base03: #626483; $base04: #62d6e8; $base05: #e9e9f4; $base06: #f1f2f8; $base07: #f7f7fb; $base08: #ea51b2; $base09: #b45bcf; $base0a: #00f769; $base0b: #ebff87; $base0c: #a1efe4; $base0d: #62d6e8; $base0e: #b45bcf; $base0f: #00f769; ``` ##### Neon ![neon-code-block]({{ '/assets/images/neon-code-block.jpg' | relative_url }}) ```scss /* neon syntax highlighting (base16) */ $base00: #ffffff; $base01: #e0e0e0; $base02: #d0d0d0; $base03: #b0b0b0; $base04: #000000; $base05: #101010; $base06: #151515; $base07: #202020; $base08: #ff0086; $base09: #fd8900; $base0a: #aba800; $base0b: #00c918; $base0c: #1faaaa; $base0d: #3777e6; $base0e: #ad00a1; $base0f: #cc6633; ``` ##### Plum ![plum-code-block]({{ '/assets/images/plum-code-block.jpg' | relative_url }}) ```scss /* plum syntax highlighting (base16) */ $base00: #ffffff; $base01: #e0e0e0; $base02: #d0d0d0; $base03: #b0b0b0; $base04: #000000; $base05: #101010; $base06: #151515; $base07: #202020; $base08: #ff0086; $base09: #fd8900; $base0a: #aba800; $base0b: #00c918; $base0c: #1faaaa; $base0d: #3777e6; $base0e: #ad00a1; $base0f: #cc6633; ``` ##### Sunrise ![sunrise-code-block]({{ '/assets/images/sunrise-code-block.jpg' | relative_url }}) ```scss /* sunrise syntax highlighting (base16) */ $base00: #1d1f21; $base01: #282a2e; $base02: #373b41; $base03: #969896; $base04: #b4b7b4; $base05: #c5c8c6; $base06: #e0e0e0; $base07: #ffffff; $base08: #cc6666; $base09: #de935f; $base0a: #f0c674; $base0b: #b5bd68; $base0c: #8abeb7; $base0d: #81a2be; $base0e: #b294bb; $base0f: #a3685a; ``` ### Breakpoints and grid stuff Probably won't need to touch these, but they're there if you need to. Width variables are used with the [`@include breakpoint()`](http://breakpoint-sass.com/) mixin to adapt the design of certain elements. And `$susy` is used for setting [the grid](http://susy.oddbird.net/) the theme uses. Uncommenting the lines under `debug` can be useful if you want to show the columns when adjusting the layout.
Susy grid overlay for debugging
Susy grid debug overlay enabled.
### Disabling animations You can disable either the fade-in intro animation, element transition animations, or both by overriding the corresponding variables. For example if you wanted to disable all animations you could include the following lines: ```scss $intro-transition : none; $global-transition : none; ``` ================================================ FILE: docs/_docs/17-javascript.md ================================================ --- title: "JavaScript" permalink: /docs/javascript/ excerpt: "Instructions for customizing and building the theme's scripts." last_modified_at: 2021-07-23T09:33:35-04:00 --- The theme's `assets/js/main.min.js` script is built from several vendor, jQuery plugins, and other scripts found in [`assets/js/`](https://github.com/mmistakes/minimal-mistakes/tree/master/assets/js). ```bash minimal mistakes ├── assets | ├── js | | ├── plugins | | | ├── gumshoe.js # simple scrollspy | | | ├── jquery.ba-throttle-debounce.js # rate-limit functions | | | ├── jquery.fitvids.js # fluid width video embeds | | | ├── jquery.greedy-navigation.js # priority plus navigation | | | ├── jquery.magnific-popup.js # responsive lightbox | | | └── smooth-scroll.js # make same-page links scroll smoothly | | ├── vendor | | | └── jquery | | | └── jquery-3.5.1.js | | ├── _main.js # jQuery plugin settings and other scripts | | └── main.min.js # concatenated and minified theme script ``` ## Customizing To modify or add your own scripts include them in [`assets/js/_main.js`](https://github.com/mmistakes/minimal-mistakes/blob/master/assets/js/_main.js) and then rebuild using `npm run build:js`. See below for more details. If you add additional scripts to `assets/js/plugins/` and would like them concatenated with the others, be sure to update the `uglify` script in [`package.json`](https://github.com/mmistakes/minimal-mistakes/blob/master/package.json). Same goes for scripts that you remove. You can also add scripts to the `` or closing `` elements by adding paths to following arrays in `_config.yml`. **Example:** ```yaml head_scripts: - https://code.jquery.com/jquery-3.3.1.min.js - /assets/js/your-custom-head-script.js footer_scripts: - /assets/js/your-custom-footer-script.js after_footer_scripts: - /assets/js/custom-script-loads-after-footer.js ``` **Note:** If you assign `footer_scripts` the theme's `/assets/js/main.min.js` file will be deactivated. This script includes jQuery and various other plugins that you'll need to find replacements for and include separately. {: .notice--warning} --- ## Build process In an effort to reduce dependencies a set of [**npm scripts**](https://css-tricks.com/why-npm-scripts/) are used to build `main.min.js` instead of task runners like [Gulp](http://gulpjs.com/) or [Grunt](http://gruntjs.com/). If those tools are more your style then by all means use them instead :wink:. To get started: 1. Install [Node.js](http://nodejs.org/). 2. `cd` to the root of your project. 3. Install all of the dependencies by running `npm install`. **Note:** If you upgraded from a previous version of the theme be sure you copied over [`package.json`](https://github.com/{{ site.repository }}/blob/master/package.json) prior to running `npm install`. {: .notice--warning} If all goes well, running `npm run build:js` will compress/concatenate `_main.js` and all plugin scripts into `main.min.js`. ## Debugging The minified JavaScript is harder to debug in the browser than the raw source. To stop the minification and bundle all the JavaScript as-is --- open up `package.json` and edit the value `scripts.uglify` from: ```json "scripts": { "uglify": "uglifyjs [...] -c -m -o assets/js/main.min.js", ``` To the following: ```json "scripts": { "uglify": "cat [...] > assets/js/main.min.js", ``` ================================================ FILE: docs/_docs/18-history.md ================================================ --- 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: '2026-03-11T15:33:49+08:00' toc: false --- {% raw %} ## [4.28.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.28.0) ### Enhancements - Updated Traditional Chinese translation [#5250](https://github.com/mmistakes/minimal-mistakes/issues/5250) - Add built-in support for jekyll-gfm-admonitions [#5312](https://github.com/mmistakes/minimal-mistakes/issues/5312) - Add Latte and Mocha skins from Catppuccin project [#5341](https://github.com/mmistakes/minimal-mistakes/issues/5341) - Add support for Swetrix, a GDPR-compliant analytics provider [#5344](https://github.com/mmistakes/minimal-mistakes/issues/5344) - Support resolving `ui-text` using `page.locale` when available [#5439](https://github.com/mmistakes/minimal-mistakes/issues/5439) - Add `aria-label` to all nav elements for WCAG compliance [#5442](https://github.com/mmistakes/minimal-mistakes/issues/5442) - Add IndieWeb microformat support and configurable footer `rel` attribute [#5443](https://github.com/mmistakes/minimal-mistakes/issues/5443) - Add `og:image:alt` and `twitter:image:alt` support [#5444](https://github.com/mmistakes/minimal-mistakes/issues/5444) - Add `fediverse:creator` meta tag for link preview attribution [#5445](https://github.com/mmistakes/minimal-mistakes/issues/5445) - Update hardcoded icon classes for Font Awesome 6 [#5446](https://github.com/mmistakes/minimal-mistakes/issues/5446) - Add missing brand-color rules for newer social platforms [#5447](https://github.com/mmistakes/minimal-mistakes/issues/5447) - Add custom sidebar content hook [#5448](https://github.com/mmistakes/minimal-mistakes/issues/5448) - Add config toggle to suppress taxonomy display on posts [#5449](https://github.com/mmistakes/minimal-mistakes/issues/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](https://github.com/mmistakes/minimal-mistakes/issues/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](https://github.com/mmistakes/minimal-mistakes/issues/5296) ## [4.27.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.2) ### Enhancements - Hide `.page__footer-follow` if there are no links nor atom feed. [#5279](https://github.com/mmistakes/minimal-mistakes/issues/5279) - Add HTML escaping for some titles, labels and metada that was missing. [#5276](https://github.com/mmistakes/minimal-mistakes/issues/5276) - Add optional `footer.since` for copyright time range. [#5275](https://github.com/mmistakes/minimal-mistakes/issues/5275) ### Bug Fixes - Add `escape_once` to gallery title and alt text. ## [4.27.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.1) ### Enhancements - Add a "Share on Bluesky" button [#5179](https://github.com/mmistakes/minimal-mistakes/issues/5179) - Add preset variables for modern font stack [#5033](https://github.com/mmistakes/minimal-mistakes/issues/5033) - Update X share button to match brand color [#5245](https://github.com/mmistakes/minimal-mistakes/issues/5245) ### Bug Fixes - Fix wrong icon and color for X share button. ## [4.27.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.27.0) ### Enhancements - Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886) - Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890) - Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values). - Remove unnecessary "type" attribute [#4956](https://github.com/mmistakes/minimal-mistakes/issues/4956) - The "if" means the default is never used [#4955](https://github.com/mmistakes/minimal-mistakes/issues/4955) - For pages without a title, show the site title only once [#4959](https://github.com/mmistakes/minimal-mistakes/issues/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](https://github.com/mmistakes/minimal-mistakes/issues/5068) - Tweak contrast skin $primary-color to adhere to WCAG guidelines. [#5126](https://github.com/mmistakes/minimal-mistakes/issues/5126) - Update social share buttons to reflect Twitter rebranding to X [#5210](https://github.com/mmistakes/minimal-mistakes/issues/5210) ### Bug Fixes - 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](https://github.com/mmistakes/minimal-mistakes/issues/5106) - bundle exec jekyll serve will fail if more than once [#5193](https://github.com/mmistakes/minimal-mistakes/issues/5193) ### Documentation & Maintenance - 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 `

` 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 `` 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 `` 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 `

` 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 Esc. [#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 `` 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 `
` 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. `
my link`). - Add `air`, `contrast`, `dark`, `dirt`, `mint`, and `sunrise` skin color options. [#1208](https://github.com/mmistakes/minimal-mistakes/issues/1208) - Allow scripts in `` and before `` 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 `` and `` 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 `
` 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 `` 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 `` 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 `` 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. `

` 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 ``. - 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)) ![social sharing buttons](https://cloud.githubusercontent.com/assets/1376749/5860522/d9f28a96-a22f-11e4-9b83-940a3a9a766a.png) - 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. ![menu animation](https://camo.githubusercontent.com/3fbd8c1326485f4b1ab32c0005c0fca7660b5d31/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313337363734392f323136343037352f31653366303663322d393465372d313165332d383961612d6436623636376562306564662e676966) ## [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) {% endraw %} ================================================ FILE: docs/_docs/19-contributing.md ================================================ --- title: "Contributing" permalink: /docs/contributing/ excerpt: "How you can contribute to make this theme better." last_modified_at: 2017-03-22T09:51:05-04:00 --- Having trouble working with the theme? Found a typo in the documentation? Interested in adding a feature or [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. 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. Theme documentation and demo pages can be found in the [`/docs`](https://github.com/{{ site.repository }}/blob/master/docs) folder if you'd like to tackle any "low-hanging fruit" like fixing typos, bad grammar, etc. ================================================ FILE: docs/_docs/20-docs-2-2.md ================================================ --- title: "2.2 Documentation" permalink: /docs/docs-2-2/ excerpt: "Setup and installation instructions for Minimal Mistakes 2.2 (deprecated)." last_modified_at: 2018-03-20T16:00:34-04:00 toc: true --- ## Installation Minimal Mistakes now requires [Jekyll](http://jekyllrb.com/) 3.0. Make sure to run `bundle update` if you aren't on the latest version to update all gem dependencies. If you are creating a new Jekyll site using Minimal Mistakes follow these steps: 1. Fork the [Minimal Mistakes repo](http://github.com/mmistakes/minimal-mistakes/fork). 2. Clone the repo you just forked and rename it. 3. [Install Bundler](http://bundler.io) `gem install bundler` and Run `bundle install` to install all dependencies (Jekyll, [Jekyll-Sitemap](https://github.com/jekyll/jekyll-sitemap), [Octopress](https://github.com/octopress/octopress), etc) 4. Update `config.yml`, add navigation, and replace demo posts and pages with your own. Full details below. If you want to use Minimal Mistakes with an existing Jekyll site follow these steps: 1. [Download Minimal Mistakes](https://github.com/mmistakes/minimal-mistakes/releases/tag/2.2.1) and unzip. 2. Rename `minimal-mistakes-master` to something meaningful ie: `new-site` 3. Run `bundle install` to install all dependencies (Jekyll, [Jekyll-Sitemap](https://github.com/jekyll/jekyll-sitemap), [Octopress](https://github.com/octopress/octopress), etc) 4. Remove demo posts/pages and replace with your own posts, pages, and any other content you want to move over. 5. Update posts' and pages' YAML to match variables used by Minimal Mistakes. Full details below. 6. Update `_config.yml` and add navigation links. Full details below. **Pro-tip:** Delete the `gh-pages` branch after cloning and start fresh by branching off `master`. There is a bunch of garbage in `gh-pages` used for the theme's demo site that I'm guessing you won't want. {: .notice} ## Running Jekyll The preferred method for running Jekyll is with `bundle exec`, but if you're willing to deal gem conflicts feel free to go cowboy with a `jekyll serve` or `jekyll build`. > In some cases, running executables without bundle exec may work, if the executable happens to be installed in your system and does not pull in any gems that conflict with your bundle. > >However, this is unreliable and is the source of considerable pain. Even if it looks like it works, it may not work in the future or on another machine. ```bash bundle exec jekyll serve ``` ## Scaffolding How Minimal Mistakes is organized and what the various files are. All posts, layouts, includes, stylesheets, assets, and whatever else is grouped nicely under the root folder. The compiled Jekyll site outputs to `_site/`. ```bash minimal-mistakes/ ├── _includes/ | ├── author-bio.html # bio stuff layout. pulls optional owner data from _config.yml | ├── disqus-comments # Disqus comments script | ├── footer # site footer | ├── head # site head | ├── navigation # site top navigation | ├── open-graph.html # Twitter Cards and Open Graph meta data | └── scripts # site scripts ├── _layouts/ | ├── home.html # homepage layout | ├── page.html # page layout | ├── post-index.html # post index layout | └── post.html # single post layout ├── _posts/ # MarkDown formatted posts ├── _sass/ # Sass stylesheets ├── _templates/ # used by Octopress to define YAML variables for new posts/pages ├── about/ # sample about page ├── assets/ | ├── css/ # compiled stylesheets | ├── fonts/ # webfonts | ├── js/ | | ├── _main.js # main JavaScript file, plugin settings, etc | | ├── plugins/ # scripts and jQuery plugins to combine with _main.js | | ├── scripts.min.js # concatenated and minified _main.js + plugin scripts | | └── vendor/ # vendor scripts to leave alone and load as is | └── less/ ├── images/ # images for posts and pages ├── 404.md # 404 page ├── feed.xml # Atom feed template ├── index.md # sample homepage. lists 5 latest posts ├── posts/ # sample post index page. lists all posts in reverse chronology └── theme-setup/ # theme setup page. safe to remove ``` ## Site Setup A quick checklist of the files you'll want to edit to get up and running. ### Site Wide Configuration `_config.yml` is your friend. Open it up and personalize it. Most variables are self explanatory but here's an explanation of each if needed: #### title The title of your site... shocker! Example `title: My Awesome Site` #### url Used to generate absolute urls in `sitemap.xml`, `feed.xml`, and for generating canonical URLs in ``. When developing locally either comment this out or use something like `http://localhost:4000` so all assets load properly. *Don't include a trailing `/`*. Examples: ```yaml url: http://mmistakes.github.io/minimal-mistakes url: http://localhost:4000 url: //cooldude.github.io url: ``` #### Google Analytics and Webmaster Tools Google Analytics UA and Webmaster Tool verification tags can be entered under `owner` in `_config.yml`. For more information on obtaining these meta tags check [Google Webmaster Tools](http://support.google.com/webmasters/bin/answer.py?hl=en&answer=35179) and [Bing Webmaster Tools](https://ssl.bing.com/webmaster/configure/verify/ownership) support. ### Navigation Links To set what links appear in the top navigation edit `_data/navigation.yml`. Use the following format to set the URL and title for as many links as you'd like. *External links will open in a new window.* ```yaml - title: Portfolio url: /portfolio/ - title: Made Mistakes url: http://mademistakes.com ``` ## Adding New Content with Octopress While completely optional, I've included Octopress and some starter templates to automate the creation of new posts and pages. To take advantage of it start by installing the [Octopress](https://github.com/octopress/octopress) gem if it isn't already. ```bash $ gem install octopress ``` ### New Post Default command ```bash $ octopress new post "Post Title" ``` Default works great if you want all your posts in one directory, but if you're like me and want to group them into subfolders like `/posts`, `/portfolio`, etc. Then this is the command for you. By specifying the DIR it will create a new post in that folder and populate the `categories:` YAML with the same value. ```bash $ octopress new post "New Portfolio Post Title" --dir portfolio ``` ### New Page To create a new page use the following command. ```bash $ octopress new page new-page/ ``` This will create a page at `/new-page/index.md` ## Layouts and Content Explanations of the various `_layouts` included with the theme and when to use them. ### Post and Page These two layouts are very similar. Both have an author sidebar, allow for large feature images at the top, and optional Disqus comments. The only real difference is the post layout includes related posts at the end of the page. ### Post Index Page A [sample index page]({{ site.url }}/posts/) listing all posts grouped by the year they were published has been provided. The name can be customized to your liking by editing a few references. For example, to change **Posts** to **Writing** update the following: In `_config.yml` under `links:` rename the title and URL to the following: ```yaml links: - title: Writing url: /writing/ ``` * Rename `posts/index.md` to `writing/index.md` and update the YAML front matter accordingly. * Update the **View all posts** link in the `post.html` layout found in `_layouts` to match title and URL set previously. ### Feature Images A good rule of thumb is to keep feature images nice and wide so you don't push the body text too far down. An image cropped around around 1024 x 256 pixels will keep file size down with an acceptable resolution for most devices. If you want to serve these images responsively I'd suggest looking at the [Jekyll Picture Tag](https://github.com/robwierzbowski/jekyll-picture-tag) plugin[^plugins]. [^plugins]: If you're using GitHub Pages to host your site be aware that plugins are disabled. You'll need to build your site locally and then manually deploy if you want to use this sweet plugin. The post and page layouts make the assumption that the feature images live in the `images/` folder. To add a feature image to a post or page just include the filename in the front matter like so. It's probably best to host all your images from this folder, but you can hotlink from external sources if you desire. ```yaml image: feature: feature-image-filename.jpg thumb: thumbnail-image.jpg #keep it square 200x200 px is good ``` To add attribution to a feature image use the following YAML front matter on posts or pages. Image credits appear directly below the feature image with a link back to the original source if supplied. ```yaml image: feature: feature-image-filename.jpg credit: Michael Rose #name of the person or site you want to credit creditlink: http://mademistakes.com #url to their site or licensing ``` ### Thumbnails for OG and Twitter Cards Feature and thumbnail images are used by [Open Graph](https://developers.facebook.com/docs/opengraph/) and [Twitter Cards](https://dev.twitter.com/docs/cards) as well. If you don't assign a thumbnail the default graphic *(default-thumb.png)* is used. I'd suggest changing this to something more meaningful --- your logo or avatar are good options. **Pro-Tip**: You need to [apply for Twitter Cards](https://dev.twitter.com/docs/cards) before they will begin showing up when links to your site are shared. {:.notice} ### Author Override By making use of data files you can assign different authors for each post. Start by modifying `authors.yml` file in the `_data` folder and add your authors using the following format. ```yaml # Authors billy_rick: name : "Billy Rick" web : "http://thewhip.com" email : "billy@rick.com" bio : "What do you want, jewels? I am a very extravagant man." avatar : "bio-photo-2.jpg" twitter : "extravagantman" google_plus : "BillyRick" cornelius_fiddlebone: name : "Cornelius Fiddlebone" email : "cornelius@thewhip.com" bio : "I ordered what?" avatar : "bio-photo.jpg" twitter : "rhymeswithsackit" google_plus : "CorneliusFiddlebone" ``` To assign Billy Rick as an author for our post. We'd add the following YAML front matter to a post: ```yaml author: billy_rick ``` ### Kramdown Table of Contents To include an auto-generated **table of contents** for posts and pages, add the following `_include` before the actual content. [Kramdown will take care of the rest](http://kramdown.rubyforge.org/converter/html.html#toc) and convert all headlines into list of links. ```html {% raw %}{% include toc.html %}{% endraw %} ``` ### Paragraph Indentation By default the margin below paragraphs has been removed and indent added to each. This is an intentional design decision to mimic the look of type set in a printed book or manuscript.
screen shot of paragraphs with default indent style set
Example of the default paragraph style (indented first line and bottom margin removed).
To disable the indents and add spacing between paragraphs change the following line in `_sass/variables.scss` from `true !default` to `false` like so. ```scss $paragraph-indent: false; ```
screen shot of paragraphs with indent style disabled
Example of paragraphs with $paragraph-indent disabled.
### Videos Video embeds are responsive and scale with the width of the main content block with the help of [FitVids](http://fitvidsjs.com/). Not sure if this only effects Kramdown or if it's an issue with Markdown in general. But adding YouTube video embeds causes errors when building your Jekyll site. To fix add a space between the ` ``` ### Social Sharing Links Social sharing links for Twitter, Facebook, and Google+ are included on posts/pages by default. To hide them on specific posts or pages add `share: false` to the YAML Front Matter. If you'd like to use different social networks modify `_includes/social-share` to your liking. Icons are set using [Font Awesome](http://fontawesome.io). ## Further Customization Jekyll 2.x added support for Sass files making it much easier to modify a theme's fonts and colors. By editing values found in `_sass/variables.scss` you can fine tune the site's colors and typography. For example if you wanted a red background instead of white you'd change `$bodycolor: #fff;` to `$bodycolor: $cc0033;`. To modify the site's JavaScript files I setup a Grunt build script to lint/concatenate/minify all scripts into `scripts.min.js`. [Install Node.js](http://nodejs.org/), then [install Grunt](http://gruntjs.com/getting-started), and then finally install the dependencies for the theme contained in `package.json`: ```bash npm install ``` From the theme's root, use `grunt` concatenate JavaScript files, and optimize .jpg, .png, and .svg files in the `images/` folder. You can also use `grunt dev` in combination with `jekyll build --watch` to watch for updates JS files that Grunt will then automatically re-build as you write your code which will in turn auto-generate your Jekyll site when developing locally. ================================================ FILE: docs/_docs/21-license.md ================================================ --- title: "License" permalink: /docs/license/ excerpt: "License for Minimal Mistakes Jekyll Theme." last_modified_at: 2018-01-10T11:22:01-05:00 --- The MIT License (MIT) Copyright (c) 2013-{{ site.time | date: '%Y' }} 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://sam.zoy.org/wtfpl/). 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 [jQuery Smooth Scroll](https://github.com/kswedberg/jquery-smooth-scroll), Copyright (c) 2017 Karl Swedberg. jQuery Smooth Scroll 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 . 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) 2017 Oliver Nightingale. Lunr is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT). ================================================ FILE: docs/_docs/22-faq.md ================================================ --- title: Frequently Asked Questions classes: wide permalink: "/docs/faq/" sidebar: nav: docs last_modified_at: '2024-04-24T00:51:32+08:00' toc: false --- This page is still under construction. Meanwhile, check out existing [issues](https://github.com/mmistakes/minimal-mistakes/issues) and [discussions](https://github.com/mmistakes/minimal-mistakes/discussions) to see if your question has already been asked before. {: .notice--primary } - `'require': cannot load such file -- webrick (LoadError)` This error occurs when you run `jekyll serve` on Ruby 3.0+. Ruby 3.0 no longer comes with Webrick by default. To fix this, add `gem "webrick"` to your `Gemfile` and run `bundle install`. See [jekyll/jekyll#8523](https://github.com/jekyll/jekyll/issues/8523) ================================================ FILE: docs/_drafts/post-draft.md ================================================ --- layout: single title: "Draft Post" header: teaser: "unsplash-gallery-image-2-th.jpg" categories: - Jekyll tags: - edge case --- Monocle ipsum dolor sit amet handsome pariatur aliqua, hub remarkable irure commodo classic deserunt bespoke. Sunt commodo signature, Swiss minim flat white Tsutaya excepteur artisanal et Nordic laborum joy ANA. Beams mollit exquisite Ginza efficient dolore qui Comme des Garçons Winkreative Lufthansa bulletin global. Iconic sed liveable duis. Mollit dolore eu laboris Comme des Garçons hub pintxos sed eiusmod tote bag Shinkansen nisi consectetur pariatur. Nordic international quis finest Baggu dolore, bureaux hub hand-crafted ut joy sint Airbus A380. Conversation handsome hub cosy, enim emerging sed K-pop velit Gaggenau charming proident et boulevard ryokan. Remarkable airport deserunt international est, nulla minim magna emerging discerning in exclusive dolor. Commodo dolore deserunt cosy, global Nordic culpa uniforms signature charming. Smart ryokan commodo, eiusmod global occaecat incididunt aliqua Beams. Boulevard conversation excepteur finest Swiss non veniam Comme des Garçons essential artisanal. Destination Scandinavian international, anim Boeing 787 in duis Baggu irure essential. Fugiat exclusive laborum, Gaggenau ad Winkreative sharp elit labore. Remarkable officia ryokan Boeing 787, consectetur boutique Nordic Singapore espresso elit iconic perfect izakaya soft power excepteur. Ut veniam carefully curated K-pop dolore, uniforms in voluptate. Craftsmanship Ettinger Lufthansa sophisticated esse boutique veniam exquisite. Aute cillum bespoke, intricate consectetur in exquisite international lovely bulletin irure Washlet Gaggenau deserunt. Efficient eu quality of life wardrobe labore, dolor emerging airport concierge reprehenderit izakaya dolore liveable Baggu. Commodo elegant essential consectetur Gaggenau culpa consequat id sophisticated St Moritz sunt conversation duis non velit. Nulla business class non ut Marylebone ANA soft power fugiat carefully curated. Bureaux sed punctual handsome Washlet impeccable hand-crafted aute extraordinary tote bag enim boulevard soft power sleepy. Dolore conversation irure Zürich the best adipisicing, vibrant finest hub anim premium aliqua. Cupidatat smart international, bureaux Baggu id efficient punctual. Tempor nulla flat white enim, K-pop incididunt elit efficient Toto uniforms concierge discerning. Concierge sleepy extraordinary, deserunt Melbourne commodo Nordic Winkreative Washlet Ginza exercitation espresso. Tsutaya sed in business class sharp. Do Beams in adipisicing Lufthansa. Business class occaecat Melbourne, irure Singapore commodo espresso carefully curated quis quality of life adipisicing. Impeccable laborum efficient classic proident in. Beams Helsinki ullamco Marylebone dolore sophisticated concierge Muji anim duis joy ut. Comme des Garçons aute Muji in aliquip ryokan soft power Nordic essential ANA culpa elegant. ================================================ FILE: docs/_includes/after-content.html ================================================
================================================ FILE: docs/_includes/before-related.html ================================================ {% include after-content.html %} ================================================ FILE: docs/_includes/comments-providers/scripts.html ================================================ {% comment %} Repurposing this file as "after-scripts.html" snippet, since the docs site isn't using comments anyway. {% endcomment %} ================================================ FILE: docs/_pages/404.md ================================================ --- title: "Page Not Found" excerpt: "Page not found. Your pixels are in another canvas." sitemap: false permalink: /404.html --- Sorry, but the page you were trying to view does not exist. ================================================ FILE: docs/_pages/about.md ================================================ --- permalink: /about/ title: "About" excerpt: "Minimal Mistakes is a flexible two-column Jekyll theme." layouts_gallery: - url: /assets/images/mm-layout-splash.png image_path: /assets/images/mm-layout-splash.png alt: "splash layout example" - url: /assets/images/mm-layout-single-meta.png image_path: /assets/images/mm-layout-single-meta.png alt: "single layout with comments and related posts" - url: /assets/images/mm-layout-archive.png image_path: /assets/images/mm-layout-archive.png alt: "archive layout example" last_modified_at: 2022-05-27T11:59:26-04:00 toc: true --- Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. As the name implies --- styling is purposely minimalistic to be enhanced and customized by you :smile:. {% include gallery id="layouts_gallery" caption="Examples of included layouts `splash`, `single`, and `archive`." %} [Install the Theme]({{ "/docs/quick-start-guide/" | relative_url }}){: .btn .btn--success .btn--large} ## Notable Features - Bundled as a "theme gem" for easier install/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), [Discourse](https://www.discourse.org/), [utterances](https://utteranc.es/), [giscus](https://giscus.app/), static-based via [Staticman v1 and v2](https://staticman.net/), and custom). - [Google Analytics](https://www.google.com/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), and Vietnamese. ## 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 `
` 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. | For even more demo pages check the [posts archive][year-archive]. [header-image-post]: {{ "" | relative_url }}{% post_url 2012-03-15-layout-header-image-text-readability %} [gallery-post]: {{ "" | relative_url }}{% post_url 2010-09-09-post-gallery %} [html-tags-post]: {{ "" | relative_url }}{% post_url 2013-01-11-markup-html-tags-and-formatting %} [syntax-post]: {{ "" | relative_url }}{% post_url 2013-08-16-markup-syntax-highlighting %} [sample-collection]: {{ "/recipes/chocolate-chip-cookies/" | relative_url }} [categories-archive]: {{ "/categories/" | relative_url }} [tags-archive]: {{ "/tags/" | relative_url }} [year-archive]: {{ "/year-archive/" | relative_url }} --- ## Credits ### 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](https://jekyllrb.com/) - [jQuery](https://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/) - Greedy Navigation - [lukejacksonn](https://codepen.io/lukejacksonn/pen/PwmwWV) - [jQuery Smooth Scroll](https://github.com/kswedberg/jquery-smooth-scroll) - [Lunr](http://lunrjs.com) --- Minimal Mistakes is designed, developed, and maintained by Michael Rose. Just another boring, tattooed, designer from Buffalo New York. ================================================ FILE: docs/_pages/archive-layout-with-content.md ================================================ --- title: "Archive Layout with Content" layout: archive permalink: /archive-layout-with-content/ --- A variety of common markup showing how the theme styles them. # Header one ## Header two ### Header three #### Header four ##### Header five ###### Header six ## Blockquotes Single line blockquote: > Stay hungry. Stay foolish. Multi line blockquote with a cite reference: > People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs --- Apple Worldwide Developers' Conference, 1997 {: .small} ## Tables | Employee | Salary | | | -------- | ------ | ------------------------------------------------------------ | | [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. | | [Jane Doe](#) | $100K | For all the blogging she does. | | [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. | | [Jane Bloggs](#) | $100B | With hair like that?! Enough said. | | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |-----------------------------| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |=============================| | Foot1 | Foot2 | Foot3 | ## Definition Lists Definition List Title : Definition list division. Startup : A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model. #dowork : Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends. Do It Live : I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one. ## Unordered Lists (Nested) * List item one * List item one * List item one * List item two * List item three * List item four * List item two * List item three * List item four * List item two * List item three * List item four ## Ordered List (Nested) 1. List item one 1. List item one 1. List item one 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` [Primary Button](#){: .btn} [Success Button](#){: .btn .btn--success} [Warning Button](#){: .btn .btn--warning} [Danger Button](#){: .btn .btn--danger} [Info Button](#){: .btn .btn--info} [Inverse Button](#){: .btn .btn--inverse} [Light Outline Button](#){: .btn .btn--light-outline} ```markdown [Primary Button Text](#link){: .btn} [Success Button Text](#link){: .btn .btn--success} [Warning Button Text](#link){: .btn .btn--warning} [Danger Button Text](#link){: .btn .btn--danger} [Info Button Text](#link){: .btn .btn--info} [Inverse Button](#link){: .btn .btn--inverse} [Light Outline Button](#link){: .btn .btn--light-outline} ``` [X-Large Button](#){: .btn .btn--x-large} [Large Button](#){: .btn .btn--large} [Default Button](#){: .btn} [Small Button](#){: .btn .btn--small} ```markdown [X-Large Button](#link){: .btn .btn--x-large} [Large Button](#link){: .btn .btn--large} [Default Button](#link){: .btn} [Small Button](#link){: .btn .btn--small} ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ## HTML Tags ### Address Tag
1 Infinite Loop
Cupertino, CA 95014
United States
### Anchor Tag (aka. Link) This is an example of a [link](http://apple.com "Apple"). ### Abbreviation Tag The abbreviation CSS stands for "Cascading Style Sheets". *[CSS]: Cascading Style Sheets ### Cite Tag "Code is poetry." ---Automattic ### Code Tag You will learn later on in these tests that `word-wrap: break-word;` will be your best friend. ### Strike Tag This tag will let you strikeout text. ### Emphasize Tag The emphasize tag should _italicize_ text. ### Insert Tag This tag should denote inserted text. ### Keyboard Tag This scarcely known tag emulates keyboard text, which is usually styled like the `` tag. ### Preformatted Tag This tag styles large blocks of code.
.post-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.2;
  and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}
### Quote Tag Developers, developers, developers… –Steve Ballmer ### Strong Tag This tag shows **bold text**. ### Subscript Tag Getting our science styling on with H2O, which should push the "2" down. ### Superscript Tag Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. ### Variable Tag This allows you to denote variables. {% for post in site.pages %} {% include archive-single.html %} {% endfor %} ================================================ FILE: docs/_pages/category-archive.md ================================================ --- title: "Posts by Category" layout: categories permalink: /categories/ author_profile: true --- ================================================ FILE: docs/_pages/collection-archive.html ================================================ --- layout: archive title: "Posts by Collection" permalink: /collection-archive/ author_profile: true --- {% capture written_label %}'None'{% endcapture %} {% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == "posts" %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %} ================================================ FILE: docs/_pages/edge-case.md ================================================ --- title: Edge Case layout: category permalink: /categories/edge-case/ taxonomy: Edge Case --- Sample post listing for the category `Edge Case`. ================================================ FILE: docs/_pages/home.md ================================================ --- layout: splash permalink: / hidden: true header: overlay_color: "#5e616c" overlay_image: /assets/images/mm-home-page-feature.jpg actions: - label: " Install now" url: "/docs/quick-start-guide/" excerpt: > A flexible two-column Jekyll theme. Perfect for building personal sites, blogs, and portfolios.
Latest release v4.28.0 feature_row: - image_path: /assets/images/mm-customizable-feature.png alt: "customizable" title: "Super customizable" excerpt: "Everything from the menus, sidebars, comments, and more can be configured or set with YAML Front Matter." url: "/docs/configuration/" btn_class: "btn--primary" btn_label: "Learn more" - image_path: /assets/images/mm-responsive-feature.png alt: "fully responsive" title: "Responsive layouts" excerpt: "Built with HTML5 + CSS3. All layouts are fully responsive with helpers to augment your content." url: "/docs/layouts/" btn_class: "btn--primary" btn_label: "Learn more" - image_path: /assets/images/mm-free-feature.png alt: "100% free" title: "100% free" excerpt: "Free to use however you want under the MIT License. Clone it, fork it, customize it... whatever!" url: "/docs/license/" btn_class: "btn--primary" btn_label: "Learn more" --- {% include feature_row %} ================================================ FILE: docs/_pages/lorem-ipsum.md ================================================ --- title: "Lorem Ipsum" permalink: /lorem-ipsum/ --- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper. Praesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt. Curabitur non elit. Pellentesque iaculis, nisl non aliquet adipiscing, purus urna aliquet orci, sed sodales pede neque at massa. Pellentesque laoreet, enim eget varius mollis, sapien erat suscipit metus, sit amet iaculis nulla sapien id felis. Aliquam erat volutpat. Nam congue nulla a ligula. Morbi tempor hendrerit erat. Curabitur augue. Vestibulum nulla est, commodo et, fringilla quis, bibendum eget, ipsum. Suspendisse pulvinar iaculis ante. Mauris dignissim ante quis nisi. Aliquam ante mi, aliquam et, pellentesque ac, dapibus et, enim. In vulputate justo vel magna. Phasellus imperdiet justo. Proin odio orci, dapibus id, porta a, pellentesque id, erat. Aliquam erat volutpat. Mauris nonummy varius libero. Sed dolor ipsum, tempor non, aliquet et, pulvinar quis, dui. Pellentesque mauris diam, lobortis id, varius varius, facilisis at, nulla. Cras pede. Nullam id velit sit amet turpis tincidunt sagittis. Nunc malesuada. Nunc consequat scelerisque odio. Donec eu leo. Nunc pellentesque felis sed odio. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus lobortis metus in lectus. Cras mollis quam eget sapien. Pellentesque non lorem sit amet sem lacinia euismod. Nulla eget diam eget leo imperdiet consequat. Morbi nunc magna, pellentesque eu, porta at, ultricies ut, neque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In tincidunt. Praesent ut orci id eros congue ultrices. Mauris non neque. Donec nulla ante, molestie sit amet, fermentum nec, blandit sit amet, purus. Fusce eget diam eu odio iaculis mollis. Phasellus consectetuer pede quis nisi. Proin non sem ut elit pulvinar faucibus. In a turpis nec augue fringilla elementum. Nullam felis. Donec in nulla. Suspendisse sodales, turpis in suscipit ullamcorper, enim nunc sagittis risus, eu auctor velit tortor ut turpis. Mauris id augue at neque aliquam eleifend. Sed eget augue. Nunc faucibus ligula sed massa. Etiam non nulla. Etiam accumsan ullamcorper nisl. In pharetra massa at nunc. Nunc elementum. Duis sodales enim nec libero. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Praesent dapibus eros sodales urna. Duis magna nisi, lobortis quis, tincidunt rutrum, posuere non, ipsum. Aliquam convallis neque vitae diam. In diam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis fermentum arcu in tortor. Sed nibh leo, rhoncus eu, fermentum et, scelerisque ac, massa. Cras id turpis. Etiam commodo sem luctus lorem. Morbi at mi. In rutrum. Aenean luctus pede euismod tortor. Phasellus dictum. Cras neque justo, venenatis sit amet, tristique et, vulputate in, dui. Etiam sed mi gravida sapien imperdiet dictum. Aliquam gravida orci a tortor. Donec tempor. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus risus ante, pellentesque vitae, luctus eget, scelerisque sed, libero. Donec massa. Donec libero mauris, volutpat at, convallis vel, laoreet euismod, augue. In accumsan malesuada risus. Mauris metus magna, condimentum in, nonummy non, ornare eu, velit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin posuere. Proin rhoncus rutrum lorem. Phasellus dignissim massa non libero volutpat tincidunt. In hac habitasse platea dictumst. Phasellus eget eros. Nulla in nulla. Vivamus quis mauris. Maecenas pharetra rhoncus tellus. Sed sit amet lacus. Quisque interdum felis a tellus. Aliquam sed diam ac velit aliquam rutrum. Morbi commodo, risus a pulvinar adipiscing, tortor pede posuere risus, ac ornare tellus massa nec lectus. Vivamus mollis metus ac sapien. Nam sed est a libero ullamcorper dapibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean a erat ac nibh accumsan volutpat. Phasellus pulvinar consequat turpis. Curabitur ante metus, tempus ut, consequat eu, sollicitudin sit amet, justo. Duis ut libero. Հայերեն Lorem Ipsum-ը տպագրության և տպագրական արդյունաբերության համար նախատեսված մոդելային տեքստ է: Սկսած 1500-ականներից\` Lorem Ipsum-ը հանդիսացել է տպագրական արդյունաբերության ստանդարտ մոդելային տեքստ, ինչը մի անհայտ տպագրիչի կողմից տարբեր տառատեսակների օրինակների գիրք ստեղծելու ջանքերի արդյունք է: Այս տեքստը ոչ միայն կարողացել է գոյատևել հինգ դարաշրջան, այլև ներառվել է էլեկտրոնային տպագրության մեջ\` մնալով էապես անփոփոխ: Այն հայտնի է դարձել 1960-ականներին Lorem Ipsum բովանդակող Letraset էջերի թողարկման արդյունքում, իսկ ավելի ուշ համակարգչային տպագրության այնպիսի ծրագրերի թողարկման հետևանքով, ինչպիսին է Aldus PageMaker-ը, որը ներառում է Lorem Ipsum-ի տարատեսակներ: Български Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия. Lorem Ipsum е индустриален стандарт от около 1500 година, когато неизвестен печатар взема няколко печатарски букви и ги разбърква, за да напечата с тях книга с примерни шрифтове. Този начин не само е оцелял повече от 5 века, но е навлязъл и в публикуването на електронни издания като е запазен почти без промяна. Популяризиран е през 60те години на 20ти век със издаването на Letraset листи, съдържащи Lorem Ipsum пасажи, популярен е и в наши дни във софтуер за печатни издания като Aldus PageMaker, който включва различни версии на Lorem Ipsum. Català Lorem Ipsum és un text de farciment usat per la indústria de la tipografia i la impremta. Lorem Ipsum ha estat el text estàndard de la indústria des de l’any 1500, quan un impressor desconegut va fer servir una galerada de text i la va mesclar per crear un llibre de mostres tipogràfiques. No només ha sobreviscut cinc segles, sinó que ha fet el salt cap a la creació de tipus de lletra electrònics, romanent essencialment sense canvis. Es va popularitzar l’any 1960 amb el llançament de fulls Letraset que contenien passatges de Lorem Ipsum, i més recentment amb programari d’autoedició com Aldus Pagemaker que inclou versions de Lorem Ipsum. Hrvatski Lorem Ipsum je jednostavno probni tekst koji se koristi u tiskarskoj i slovoslagarskoj industriji. Lorem Ipsum postoji kao industrijski standard još od 16-og stoljeća, kada je nepoznati tiskar uzeo tiskarsku galiju slova i posložio ih da bi napravio knjigu s uzorkom tiska. Taj je tekst ne samo preživio pet stoljeća, već se i vinuo u svijet elektronskog slovoslagarstva, ostajući u suštini nepromijenjen. Postao je popularan tijekom 1960-ih s pojavom Letraset listova s odlomcima Lorem Ipsum-a, a u skorije vrijeme sa software-om za stolno izdavaštvo kao što je Aldus PageMaker koji također sadrži varijante Lorem Ipsum-a. Česky Lorem Ipsum je demonstrativní výplňový text používaný v tiskařském a knihařském průmyslu. Lorem Ipsum je považováno za standard v této oblasti už od začátku 16. století, kdy dnes neznámý tiskař vzal kusy textu a na jejich základě vytvořil speciální vzorovou knihu. Jeho odkaz nevydržel pouze pět století, on přežil i nástup elektronické sazby v podstatě beze změny. Nejvíce popularizováno bylo Lorem Ipsum v šedesátých letech 20. století, kdy byly vydávány speciální vzorníky s jeho pasážemi a později pak díky počítačovým DTP programům jako Aldus PageMaker. Româna Lorem Ipsum este pur şi simplu o machetă pentru text a industriei tipografice. Lorem Ipsum a fost macheta standard a industriei încă din secolul al XVI-lea, când un tipograf anonim a luat o planşetă de litere şi le-a amestecat pentru a crea o carte demonstrativă pentru literele respective. Nu doar că a supravieţuit timp de cinci secole, dar şi a facut saltul în tipografia electronică practic neschimbată. A fost popularizată în anii ’60 odată cu ieşirea colilor Letraset care conţineau pasaje Lorem Ipsum, iar mai recent, prin programele de publicare pentru calculator, ca Aldus PageMaker care includeau versiuni de Lorem Ipsum. Српски Lorem Ipsum је једноставно модел текста који се користи у штампарској и словослагачкој индустрији. Lorem ipsum је био стандард за модел текста још од 1500. године, када је непознати штампар узео кутију са словима и сложио их како би направио узорак књиге. Не само што је овај модел опстао пет векова, него је чак почео да се користи и у електронским медијима, непроменивши се. Популаризован је шездесетих година двадесетог века заједно са листовима летерсета који су садржали Lorem Ipsum пасусе, а данас са софтверским пакетом за прелом као што је Aldus PageMaker који је садржао Lorem Ipsum верзије. ================================================ FILE: docs/_pages/markup.md ================================================ --- title: Markup layout: tag permalink: /tags/markup/ taxonomy: markup --- Sample post listing for the tag `markup`. ================================================ FILE: docs/_pages/page-a.md ================================================ --- title: "Page A" permalink: /page-a/ date: 2011-06-23T18:38:52+00:00 --- Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. ================================================ FILE: docs/_pages/page-archive.html ================================================ --- layout: archive title: "Page Archive" permalink: /page-archive/ author_profile: false --- {% assign posts = site.pages | where_exp: "post", "post.hidden != true" %} {% for post in posts %} {% include archive-single.html %} {% endfor %} ================================================ FILE: docs/_pages/page-b.md ================================================ --- title: "Page B" permalink: /page-b/ date: 2011-06-23T18:39:14+00:00 --- (lorem ipsum) ================================================ FILE: docs/_pages/pets.md ================================================ --- title: Pets layout: collection permalink: /pets/ collection: pets entries_layout: grid classes: wide --- Sample document listing for the collection `_pets`. ================================================ FILE: docs/_pages/portfolio-archive.md ================================================ --- title: Portfolio layout: collection permalink: /portfolio/ collection: portfolio entries_layout: grid classes: wide --- Sample document listing for the collection `_portfolio`. ================================================ FILE: docs/_pages/post-archive-feature-rows.html ================================================ --- layout: archive title: "Post Archive with Feature Rows" permalink: /post-archive-feature-rows/ author_profile: true feature_row: - image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." feature_row2: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Left Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Right Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row4: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Center Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" --- {% for post in site.posts limit: 5 %} {% include archive-single.html %} {% endfor %} {% include feature_row id="intro" type="center" %} {% include feature_row %} {% include feature_row id="feature_row2" type="left" %} {% include feature_row id="feature_row3" type="right" %} {% include feature_row id="feature_row4" type="center" %} ================================================ FILE: docs/_pages/recipes-archive.md ================================================ --- layout: collection title: "Recipes" collection: recipes permalink: /recipes/ author_profile: false --- Sample document listing for the collection `_recipes`. ================================================ FILE: docs/_pages/sample-page.md ================================================ --- title: "Sample Page" permalink: /sample-page/ date: 2016-02-24T03:02:20+00:00 --- This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this: > Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi'a coladas. (And gettin' caught in the rain.) ...or something like this: > The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community. You should probably delete this page and create new pages for your content. Have fun! ================================================ FILE: docs/_pages/sitemap.md ================================================ --- layout: archive title: "Sitemap" permalink: /sitemap/ author_profile: false --- A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ "sitemap.xml" | relative_url }}) available for digesting as well.

Pages

{% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Posts

{% for post in site.posts %} {% include archive-single.html %} {% endfor %} {% capture written_label %}'None'{% endcapture %} {% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == "posts" %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %} ================================================ FILE: docs/_pages/splash-page.md ================================================ --- title: "Splash Page" layout: splash permalink: /splash-page/ date: 2016-03-23T11:48:41-04:00 header: overlay_color: "#000" overlay_filter: "0.5" overlay_image: /assets/images/unsplash-image-1.jpg actions: - label: "Download" url: "https://github.com/mmistakes/minimal-mistakes/" caption: "Photo credit: [**Unsplash**](https://unsplash.com)" excerpt: "Bacon ipsum dolor sit amet salami ham hock ham, hamburger corned beef short ribs kielbasa biltong t-bone drumstick tri-tip tail sirloin pork chop." intro: - excerpt: 'Nullam suscipit et nam, tellus velit pellentesque at malesuada, enim eaque. Quis nulla, netus tempor in diam gravida tincidunt, *proin faucibus* voluptate felis id sollicitudin. Centered with `type="center"`' feature_row: - image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg image_caption: "Image courtesy of [Unsplash](https://unsplash.com/)" alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." feature_row2: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Left Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Right Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row4: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Center Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" --- {% include feature_row id="intro" type="center" %} {% include feature_row %} {% include feature_row id="feature_row2" type="left" %} {% include feature_row id="feature_row3" type="right" %} {% include feature_row id="feature_row4" type="center" %} ================================================ FILE: docs/_pages/tag-archive.md ================================================ --- title: "Posts by Tag" permalink: /tags/ layout: tags author_profile: true --- ================================================ FILE: docs/_pages/terms.md ================================================ --- permalink: /terms/ title: "Terms and Privacy Policy" last_modified_at: 2017-10-20T12:42:38-04:00 toc: true --- ## Privacy Policy The privacy of my visitors is extremely important. This Privacy Policy outlines the types of personal information that is received and collected and how it is used. First and foremost, I will never share your email address or any other personal information to anyone without your direct consent. ### Log Files Like many other websites, this site uses log files to help learn about when, from where, and how often traffic flows to this site. The information in these log files include: * Internet Protocol addresses (IP) * Types of browser * Internet Service Provider (ISP) * Date and time stamp * Referring and exit pages * Number of clicks All of this information is not linked to anything that is personally identifiable. ### Cookies and Web Beacons When you visit this site "convenience" cookies are stored on your computer when you submit a comment to help you log in faster to [Disqus](http://disqus.com) the next time you leave a comment. Third-party advertisers may also place and read cookies on your browser and/or use web beacons to collect information. This site has no access or control over these cookies. You should review the respective privacy policies on any and all third-party ad servers for more information regarding their practices and how to opt-out. If you wish to disable cookies, you may do so through your web browser options. Instructions for doing so can be found on the specific web browsers' websites. #### Google Analytics Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read [Google Analytics Privacy Policy](http://www.google.com/analytics/learn/privacy.html). #### Google Adsense Google Adsense, a third party affiliate marketing network, uses cookies to help make sure I get a commission when you buy a product after clicking on a link or ad banner that takes you to the site of one of their merchants. You can read [Google Adsense Privacy Policy](http://support.google.com/adsense/bin/answer.py?hl=en&answer=48182). ## Disclosure Policy I make money on this website through affiliate programs. If you click an affiliate link or ad banner and buy the product, you help support this website because I'll get a percentage of that sale. Currently I'm an affiliate for Amazon and Google Adsense. What this means for you: * I became an affiliate to earn revenue towards the costs of running and maintaining this website. Where I have direct control over which ads are served on this website I offer only products that are directly related to the topic of this website and products that a reader/subscriber would have a genuine interest in or need of. * I do not and will not recommend a product just for the sake of making money. * I do not let the compensation I receive influence the content, topics, posts, or opinions expressed on this website. * I respect and value my readers too much to write anything other than my own genuine and objective opinions and advice. Just like this website, my Disclosure Policy is a work in progress. As the revenue streams evolve, so will this page. ================================================ FILE: docs/_pages/year-archive.md ================================================ --- title: "Posts by Year" permalink: /year-archive/ layout: posts author_profile: true --- ================================================ FILE: docs/_pets/lhasa-apso.md ================================================ --- title: "Lhasa Apso" excerpt: "The Lhasa Apso is a non-sporting dog breed originating in Tibet." --- > The Lhasa Apso (/ˈlɑːsə ˈæpsoʊ/ lah-sə ap-soh) is a non-sporting dog breed originating in Tibet. It was bred as an interior sentinel in the Buddhist monasteries, to alert the monks to any intruders who entered. Lhasa is the capital city of Tibet, and apso is a word in the Tibetan language meaning "bearded", so, Lhasa Apso simply means "long-haired Lhasa dog". There are, however, some who claim that the word "apso" is a form of the Tibetan word "rapso", meaning "goat-like", which would make the equivalent translation "wooly Lhasa dog". > From Wikipedia, the free encyclopedia ================================================ FILE: docs/_pets/tabby.md ================================================ --- title: "Tabby" excerpt: "A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually with a mark resembling an 'M' on its forehead." --- > A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually together with a mark resembling an 'M' on its forehead. Tabbies are sometimes erroneously assumed to be a cat breed. In fact, the tabby pattern is found in many breeds, as well as among the general mixed-breed population. The tabby pattern is a naturally occurring feature that may be related to the coloration of the domestic cat's direct ancestor, the African wildcat, which (along with the European wildcat and Asiatic wildcat) has a similar coloration. > From Wikipedia, the free encyclopedia ================================================ FILE: docs/_portfolio/baz-boom-identity.md ================================================ --- title: "Baz Boom Identity" excerpt: "Baz Boom design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-1.jpg teaser: assets/images/unsplash-gallery-image-1-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: docs/_portfolio/fizz-bang-identity.md ================================================ --- title: "Fizz Bang Identity" excerpt: "Fizz Bang design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-2.jpg teaser: assets/images/unsplash-gallery-image-2-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: docs/_portfolio/foo-bar-website.md ================================================ --- title: "Foo Bar Identity" excerpt: "Foo Bar design system including logo mark, website design, and branding applications." header: image: /assets/images/foo-bar-identity.jpg teaser: /assets/images/foo-bar-identity-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: docs/_portfolio/ginger-gulp-identity.md ================================================ --- title: "Ginger Gulp Identity" excerpt: "Ginger Gulp design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-3.jpg teaser: assets/images/unsplash-gallery-image-3-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: docs/_posts/2009-05-15-edge-case-nested-and-mixed-lists.md ================================================ --- title: "Edge Case: Nested and Mixed Lists" categories: - Edge Case tags: - content - css - edge case - lists - markup --- Nested and mixed lists are an interesting beast. It's a corner case to make sure that * Lists within lists do not break the ordered list numbering order * Your list styles go deep enough. ### Ordered -- Unordered -- Ordered 1. ordered item 2. ordered item * **unordered** * **unordered** 1. ordered item 2. ordered item 3. ordered item 4. ordered item ### Ordered -- Unordered -- Unordered 1. ordered item 2. ordered item * **unordered** * **unordered** * unordered item * unordered item 3. ordered item 4. ordered item ### Unordered -- Ordered -- Unordered * unordered item * unordered item 1. ordered 2. ordered * unordered item * unordered item * unordered item * unordered item ### Unordered -- Unordered -- Ordered * unordered item * unordered item * unordered * unordered 1. **ordered item** 2. **ordered item** * unordered item * unordered item ### Task Lists - [x] Finish my changes - [ ] Push my commits to GitHub - [ ] Open a pull request ================================================ FILE: docs/_posts/2009-06-01-edge-case-many-tags.md ================================================ --- title: "Edge Case: Many Tags" categories: - Edge Case tags: - 8BIT - alignment - Articles - captions - categories - chat - comments - content - css - dowork - edge case - embeds - excerpt - Fail - featured image - FTW - Fun - gallery - html - image - Jekyll - layout - link - Love - markup - Mothership - Must Read - Nailed It - Pictures - Post Formats - quote - standard - Success - Swagger - Tags - template - title - twitter - Unseen - video - YouTube --- This post has many tags. ================================================ FILE: docs/_posts/2009-07-02-edge-case-many-categories.md ================================================ --- title: "Edge Case: Many Categories" categories: - aciform - antiquarianism - arrangement - asmodeus - broder - buying - championship - chastening - disinclination - disinfection - dispatch - echappee - enphagy tags: - categories - edge case --- This post has many categories. ================================================ FILE: docs/_posts/2009-08-06-edge-case-no-body-content.md ================================================ --- title: "Edge Case: No Body Content" categories: - Edge Case tags: - content - edge case - layout --- ================================================ FILE: docs/_posts/2009-09-05-edge-case-no-yaml-title.md ================================================ --- categories: - Edge Case tags: - edge case - layout - title --- This post has no title specified in the YAML Front Matter. Jekyll should auto-generate a title from the filename. ================================================ FILE: docs/_posts/2009-10-05-edge-case-multiline-excerpt.md ================================================ --- title: "Edge Case: Post with multiline excerpt" --- Et ex ullamco duis don't combine these words quis laborum sunt sint. Nisi et Lorem reprehenderit cupidatat. Aliqua fugiat aliquip officia culpa elit. Adipisicing do eu duis aute et aute amet anim ut cillum aliqua. Aliqua adipisicing occaecat et ullamco fugiat. ================================================ FILE: docs/_posts/2009-10-05-edge-case-title-should-not-overflow-the-content-area.md ================================================ --- title: "Antidisestablishmentarianism" categories: - Edge Case tags: - content - css - edge case - html - layout - title --- ## Title should not overflow the content area A few things to check for: * Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality. * Check the browser window / tab title. * If you are a theme developer, check that this text does not break anything. The following CSS properties will help you support non-breaking text. ```css -ms-word-wrap: break-word; word-wrap: break-word; ``` ================================================ FILE: docs/_posts/2009-10-05-edge-case-very-long-title.md ================================================ --- title: "Suspicio? Bene ... tunc ibimus? Quis uh ... CONEXUS locus his diebus? Quisque semper aliquid videtur, in volutpat mauris. Nolo enim dicere. Vobis neque ab aliis. Ego feci memetipsum explicans. Gus mortuus est. Lorem opus habeo. Jackson Isai? Tu quoque ... A te quidem a ante. Vos scitis quod blinking res Ive 'been vocans super vos? Et conteram illud, et conteram hoc. Maledicant druggie excors. Iam hoc tu facere conatus sum ad te in omni tempore? Ludum mutavit. Verbum est ex. Et ... sunt occid" categories: - Edge Case tags: - content - css - edge case - html - layout - title --- Check for long titles and how they might break a template. ================================================ FILE: docs/_posts/2009-10-06-edge-case-broken-highlighting.md ================================================ --- title: "Edge Case: Invalid syntax highlight languages" categories: - Edge Case tags: - content - css - edge case --- Good highlighting: ```ruby str = ARGV.first if str str = str.b[/\A_(.*)_\z/, 1] if str and Gem::Version.correct?(str) version = str ARGV.shift end end ``` Good (but dumb) highlighting: ``` str = ARGV.first if str str = str.b[/\A_(.*)_\z/, 1] if str and Gem::Version.correct?(str) version = str ARGV.shift end end ``` Bad highlighting: ```invalid str = ARGV.first if str str = str.b[/\A_(.*)_\z/, 1] if str and Gem::Version.correct?(str) version = str ARGV.shift end end ``` ================================================ FILE: docs/_posts/2010-01-07-post-modified.md ================================================ --- title: "Post: Modified Date" last_modified_at: 2016-03-09T16:20:02-05:00 categories: - Post Formats tags: - Post Formats - readability - standard --- This post has been updated and should show a modified date if used in a layout. All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end. ================================================ FILE: docs/_posts/2010-01-07-post-standard.md ================================================ --- title: "Post: Standard" excerpt_separator: "" categories: - Post Formats tags: - Post Formats - readability - standard --- All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end. Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. This post has a manual excerpt `` set after the second paragraph. The following YAML Front Matter has also be applied: ```yaml excerpt_separator: "" ``` If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: docs/_posts/2010-01-08-post-chat.md ================================================ --- title: "Post: Chat" categories: - Post Formats tags: - chat - Post Formats --- Abbott: Strange as it may seem, they give ball players nowadays very peculiar names. Costello: Funny names? Abbott: Nicknames, nicknames. Now, on the St. Louis team we have Who's on first, What's on second, I Don't Know is on third-- Costello: That's what I want to find out. I want you to tell me the names of the fellows on the St. Louis team. Abbott: I'm telling you. Who's on first, What's on second, I Don't Know is on third-- Costello: You know the fellows' names? Abbott: Yes. Costello: Well, then who's playing first? Abbott: Yes. Costello: I mean the fellow's name on first base. Abbott: Who. Costello: The fellow playin' first base. Abbott: Who. Costello: The guy on first base. Abbott: Who is on first. Costello: Well, what are you askin' me for? Abbott: I'm not asking you--I'm telling you. Who is on first. Costello: I'm asking you--who's on first? Abbott: That's the man's name. Costello: That's who's name? Abbott: Yes. Costello: When you pay off the first baseman every month, who gets the money? Abbott: Every dollar of it. And why not, the man's entitled to it. Costello: Who is? Abbott: Yes. Costello: So who gets it? Abbott: Why shouldn't he? Sometimes his wife comes down and collects it. Costello: Who's wife? Abbott: Yes. After all, the man earns it. Costello: Who does? Abbott: Absolutely. Costello: Well, all I'm trying to find out is what's the guy's name on first base? Abbott: Oh, no, no. What is on second base. Costello: I'm not asking you who's on second. Abbott: Who's on first! Costello: St. Louis has a good outfield? Abbott: Oh, absolutely. Costello: The left fielder's name? Abbott: Why. Costello: I don't know, I just thought I'd ask. Abbott: Well, I just thought I'd tell you. Costello: Then tell me who's playing left field? Abbott: Who's playing first. Costello: Stay out of the infield! The left fielder's name? Abbott: Why. Costello: Because. Abbott: Oh, he's center field. Costello: Wait a minute. You got a pitcher on this team? Abbott: Wouldn't this be a fine team without a pitcher? Costello: Tell me the pitcher's name. Abbott: Tomorrow. Costello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who? Abbott: Now, that's he first thing you've said right. Costello: I DON'T EVEN KNOW WHAT I'M TALKING ABOUT! Abbott: Don't get excited. Take it easy. Costello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don't know. I don't know throws it back to tomorrow--a triple play. Abbott: Yeah, it could be. Costello: Another guy gets up and it's a long ball to center. Abbott: Because. Costello: Why? I don't know. And I don't care. Abbott: What was that? Costello: I said, I DON'T CARE! Abbott: Oh, that's our shortstop! ================================================ FILE: docs/_posts/2010-02-05-post-notice.md ================================================ --- title: "Post: Notice" categories: - Post Formats tags: - Post Formats - notice --- A notice displays information that explains nearby content. Often used to call attention to a particular detail. When using Kramdown `{: .notice}` can be added after a sentence to assign the `.notice` to the `

` element. **Changes in Service:** We just updated our [privacy policy](#) here to better service our customers. We recommend reviewing the changes. {: .notice} **Primary Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. [Praesent libero](#). Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--primary}
**Primary Notice with code block:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. [Praesent libero](#). Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. ```html Some body. ```
**Info Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing elit](#). Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--info} **Warning Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. [Integer nec odio](#). Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--warning} **Danger Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing](#) elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--danger} **Success Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at [nibh elementum](#) imperdiet. {: .notice--success} Want to wrap several paragraphs or other elements in a notice? Using Liquid to capture the content and then filter it with `markdownify` is a good way to go. ```html {% raw %}{% capture notice-2 %} #### New Site Features * You can now have cover images on blog pages * Drafts will now auto-save while writing {% endcapture %}{% endraw %}
{% raw %}{{ notice-2 | markdownify }}{% endraw %}
``` {% capture notice-2 %} #### New Site Features * You can now have cover images on blog pages * Drafts will now auto-save while writing {% endcapture %}
{{ notice-2 | markdownify }}
Or you could skip the capture and stick with straight HTML. ```html

Message

A basic message.

```

Message

A basic message.

================================================ FILE: docs/_posts/2010-02-05-post-quote.md ================================================ --- title: "Post: Quote" categories: - Post Formats tags: - Post Formats - quote --- > Only one thing is impossible for God: To find any sense in any copyright law on the planet. > Mark Twain ================================================ FILE: docs/_posts/2010-03-07-post-link.md ================================================ --- title: "Post: Link" categories: - Post Formats tags: - link - Post Formats link: https://github.com --- This theme supports **link posts**, made famous by John Gruber. To use, just add `link: http://url-you-want-linked` to the post's YAML front matter and you're done. > And this is how a quote looks. Some [link](#) can also be shown. ================================================ FILE: docs/_posts/2010-06-02-post-video-youtube.md ================================================ --- title: "Post: Video (YouTube)" categories: - Post Formats tags: - Post Formats --- YouTube video embed below. ================================================ FILE: docs/_posts/2010-08-05-post-header-image-og-override.md ================================================ --- title: "Post: Header Image with OpenGraph Override" header: image: /assets/images/page-header-image.png og_image: /assets/images/page-header-og-image.png og_image_alt: "OpenGraph image description" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a header image with an OpenGraph override. ```yaml header: image: /assets/images/page-header-image.png og_image: /assets/images/page-header-og-image.png og_image_alt: "OpenGraph image description" ``` ================================================ FILE: docs/_posts/2010-08-05-post-header-overlay-image-og-override.md ================================================ --- title: "Post: Overlay Image with OpenGraph Override" header: overlay_image: /assets/images/unsplash-image-1.jpg og_image: /assets/images/page-header-og-image.png caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Learn more" url: "https://unsplash.com" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a header image with an OpenGraph override. ```yaml header: overlay_image: /assets/images/unsplash-image-1.jpg og_image: /assets/images/page-header-og-image.png caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Learn more" url: "https://unsplash.com" ``` ================================================ FILE: docs/_posts/2010-08-05-post-image-linked.md ================================================ --- title: "Post: Image (with Link)" categories: - Post Formats tags: - image - Post Formats --- [![foo](https://live.staticflickr.com/8361/8400335147_5fabaa504c_o.jpg)](https://flic.kr/p/dNiUYB) ================================================ FILE: docs/_posts/2010-08-05-post-image-standard.md ================================================ --- title: "Post: Image (Standard)" categories: - Post Formats tags: - image - Post Formats --- The preferred way of using images is placing them in the `/assets/images/` directory and referencing them with an absolute path. Prepending the filename with `{% raw %}{{ site.url }}{{ site.baseurl }}/assets/images/{% endraw %}` will make sure your images display properly in feeds and such. Standard image with no width modifier classes applied. **HTML:** ```html {% raw %}{% endraw %} ``` **or Kramdown:** ```markdown {% raw %}![alt]({{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg){% endraw %} ``` ![Unsplash image 9]({{ site.url }}{{ site.baseurl }}/assets/images/unsplash-image-9.jpg) Image that fills page content container by adding the `.full` class with: **HTML:** ```html {% raw %}{% endraw %} ``` **or Kramdown:** ```markdown {% raw %}![alt]({{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg) {: .full}{% endraw %} ``` ![Unsplash image 10]({{ site.url }}{{ site.baseurl }}/assets/images/unsplash-image-10.jpg) {: .full} ================================================ FILE: docs/_posts/2010-08-05-post-teaser-image-og-override.md ================================================ --- title: "Post: Teaser Image with OpenGraph Override" header: teaser: /assets/images/page-header-teaser.png og_image: /assets/images/page-header-og-image.png categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a teaser image with an OpenGraph override. ```yaml header: teaser: /assets/images/page-header-teaser.png og_image: /assets/images/page-header-og-image.png ``` ================================================ FILE: docs/_posts/2010-08-06-post-image-linked-caption.md ================================================ --- title: "Post: Image (Linked with Caption)" categories: - Post Formats tags: - image - Post Formats --- {% capture fig_img %} [![Foo](https://images.unsplash.com/photo-1541943869728-4bd4f450c8f5?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&fit=max&ixid=eyJhcHBfaWQiOjF9)](https://unsplash.com/) {% endcapture %} {% capture fig_caption %} Image with a caption. {% endcapture %}
{{ fig_img | markdownify | remove: "

" | remove: "

" }}
{{ fig_caption | markdownify | remove: "

" | remove: "

" }}
================================================ FILE: docs/_posts/2010-08-07-post-image-caption.md ================================================ --- title: "Post: Image (Caption)" categories: - Post Formats tags: - image - Post Formats --- {% capture fig_img %} ![Foo]({{ "/assets/images/unsplash-gallery-image-3.jpg" | relative_url }}) {% endcapture %}
{{ fig_img | markdownify | remove: "

" | remove: "

" }}
Photo from Unsplash.
================================================ FILE: docs/_posts/2010-09-09-post-gallery.md ================================================ --- title: "Post: Gallery" categories: - Post Formats tags: - gallery - Post Formats - tiled gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 4" title: "Image 4 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 5" title: "Image 5 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 6" title: "Image 6 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 7" title: "Image 7 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 8" title: "Image 8 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 9" title: "Image 9 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 10" title: "Image 10 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 11" title: "Image 11 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 12" title: "Image 12 title caption" gallery2: - url: https://flic.kr/p/8a6Ven image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg alt: "Black and grays with a hint of green" - url: https://flic.kr/p/8a738X image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg alt: "Made for open text placement" - url: https://flic.kr/p/8a6VXP image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg alt: "Fog in the trees" gallery3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - image_path: /assets/images/unsplash-gallery-image-4-th.jpg alt: "placeholder image 4" --- These are gallery tests for image wrapped in `
` elements. To place a gallery add the necessary YAML Front Matter: ```yaml gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" - url: /assets/images/unsplash-gallery-image-4.jpg image_path: /assets/images/unsplash-gallery-image-4-th.jpg alt: "placeholder image 4" title: "Image 4 title caption" ``` And then drop-in the gallery include --- gallery `caption` is optional. ```liquid {% raw %}{% include gallery caption="This is a sample gallery with **Markdown support**." %}{% endraw %} ``` {% include gallery caption="This is a sample gallery with **Markdown support**." %} This is some text after the gallery just to make sure that everything aligns properly. Here comes another gallery, this time set the `id` to match 2nd gallery hash in YAML Front Matter. ```yaml gallery2: - url: https://flic.kr/p/8a6Ven image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg alt: "Black and grays with a hint of green" - url: https://flic.kr/p/8a738X image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg alt: "Made for open text placement" - url: https://flic.kr/p/8a6VXP image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg alt: "Fog in the trees" ``` And place it like so: ```liquid {% raw %}{% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %}{% endraw %} ``` {% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %} And for giggles one more gallery just to make sure this works. To fill page content container add `class="full"`. {% include gallery id="gallery3" class="full" caption="This is a third gallery example with two images and fills the entire content container." %} Gallery column layout can be overrided by setting a `layout`. ```liquid {% raw %}{% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %}{% endraw %} ``` {% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %} ================================================ FILE: docs/_posts/2010-09-10-post-twitter-embeds.md ================================================ --- title: "Post: Twitter Embed" categories: - Media tags: - content - embeds - media - twitter --- This post tests Twitter Embeds. ================================================ FILE: docs/_posts/2010-10-25-post-future-date.md ================================================ --- title: "Post: Future Date" date: 9999-12-31 categories: - Post --- This post lives in the future and is dated {{ page.date | date: "%c" }}. When building Jekyll with the `--future` flag it should appear. ================================================ FILE: docs/_posts/2012-01-02-layout-comments-disabled.md ================================================ --- title: "Layout: Comments Disabled" comments: false categories: - Layout - Uncategorized tags: - comments - layout --- This post has its comments disabled. There should be no comment form. ================================================ FILE: docs/_posts/2012-01-02-layout-comments.md ================================================ --- title: "Layout: Comments Enabled" comments: true categories: - Layout - Uncategorized tags: - comments - layout --- This post should display comments if a `provider` is enabled. ================================================ FILE: docs/_posts/2012-01-02-layout-post-date-disabled.md ================================================ --- title: "Layout: Post Date Disabled" show_date: false tags: - post date --- This post has the date disabled. The date this post was published should not be showing if `show_date: false` is set in `_config.yml` or in this post's YAML Front Matter. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: docs/_posts/2012-01-02-layout-post-date.md ================================================ --- title: "Layout: Post Date Enabled" show_date: true tags: - post date --- This post has post date enabled. The date the post was published should show if `show_date: true` is added to it's YAML Front Matter or as a default in `_config.yml`. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: docs/_posts/2012-01-02-layout-read-time-disabled.md ================================================ --- title: "Layout: Read Time Disabled" read_time: false tags: - read time --- This post has reading time disabled. The estimated time that it takes to read this post should not be showing if `read_time: false` is set in `_config.yml` or in this post's YAML Front Matter. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: docs/_posts/2012-01-02-layout-read-time.md ================================================ --- title: "Layout: Read Time Enabled" read_time: true tags: - read time --- This post has reading time enabled. The estimated time that it takes to read this post should show if also enabled in `_config.yml` with `read_time: true`. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: docs/_posts/2012-01-02-layout-related-posts-disabled.md ================================================ --- title: "Layout: Related Posts Disabled" related: false categories: - Layout - Uncategorized tags: - related posts - layout --- This post has related posts disabled. Related post links should not appear. ================================================ FILE: docs/_posts/2012-01-02-layout-related-posts.md ================================================ --- title: "Layout: Related Posts Enabled" related: true categories: - Layout - Uncategorized tags: - related posts - layout --- This post has related posts enabled. ================================================ FILE: docs/_posts/2012-01-02-layout-sharing-disabled.md ================================================ --- title: "Layout: Social Sharing Links Disabled" share: false categories: - Layout - Uncategorized tags: - social - layout --- This post has social sharing disabled. Social sharing links should not appear. ================================================ FILE: docs/_posts/2012-01-02-layout-sharing.md ================================================ --- title: "Layout: Social Sharing Links Enabled" share: true categories: - Layout - Uncategorized tags: - social - layout --- This post should display social sharing links. ================================================ FILE: docs/_posts/2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md ================================================ --- title: "Layout: Reading Time, Comments, Social Sharing Links, and Related Posts Disabled" read_time: false comments: false share: false related: false categories: - Layout - Uncategorized tags: - related posts - social - comments - layout --- This post has reading time, comments, social sharing links, and related posts disabled. Reading time, comments, social sharing and related post links should not appear. ================================================ FILE: docs/_posts/2012-01-03-layout-table-of-contents-include-post.md ================================================ --- title: "Layout: Post with Nested Table of Contents via Helper" tags: - table of contents --- Tests table of contents with multiple levels to verify indentation is readible via helper include (deprecated). ``` {% raw %}{% include toc %}{% endraw %} ``` {% include toc %} # Enim laboris id ea elit elit deserunt Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis. Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet. ## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur. Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim. Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit. ### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum. #### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse. #### 2.1.2 Nisi non nisi ullamco ipsum cillum Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint. #### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute. ##### 2.1.1.1 Ut aute quis ipsum fugiat dolor Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate. ##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit. ###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia. ###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit. ###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor. ###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat. ##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt. ##### 2.1.1.4 Magna ipsum nisi velit anim Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud. ###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor. ###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt. #### 2.1.4 Laboris exercitation nisi tempor dolore Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat. ### 2.2 Officia irure duis et est sunt Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim. ## 3 Laborum eu magna proident proident tempor Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint. ### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing. ### 3.2 Do exercitation ex elit incididunt sit cupidatat Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit. ### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non. ### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident. ### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu. #### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute. ##### 3.5.1.1 Nisi anim commodo consequat quis amet Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt. ###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui. ### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip. ## 4 Laboris aute consequat id eu et Lorem amet Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia. ## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea. ## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor. ================================================ FILE: docs/_posts/2012-01-03-layout-table-of-contents-indent-post.md ================================================ --- title: "Layout: Post with Nested Table of Contents" tags: - table of contents toc: true --- Tests table of contents with multiple levels to verify indentation is readible. # Enim laboris id ea elit elit deserunt Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis. Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet. ## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur. Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim. Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit. ### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum. #### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse. #### 2.1.2 Nisi non nisi ullamco ipsum cillum Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint. #### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute. ##### 2.1.1.1 Ut aute quis ipsum fugiat dolor Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate. ##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit. ###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia. ###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit. ###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor. ###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat. ##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt. ##### 2.1.1.4 Magna ipsum nisi velit anim Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud. ###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor. ###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt. #### 2.1.4 Laboris exercitation nisi tempor dolore Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat. ### 2.2 Officia irure duis et est sunt Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim. ## 3 Laborum eu magna proident proident tempor Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint. ### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing. ### 3.2 Do exercitation ex elit incididunt sit cupidatat Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit. ### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non. ### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident. ### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu. #### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute. ##### 3.5.1.1 Nisi anim commodo consequat quis amet Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt. ###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui. ### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip. ## 4 Laboris aute consequat id eu et Lorem amet Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia. ## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea. ## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor. ================================================ FILE: docs/_posts/2012-01-03-layout-table-of-contents-post.md ================================================ --- title: "Layout: Post with Table of Contents" header: image: assets/images/unsplash-image-9.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" tags: - table of contents toc: true toc_label: "Unique Title" toc_icon: "heart" --- Enable table of contents on post or page by adding `toc: true` to its YAML Front Matter. The title and icon can also be changed with: ```yaml --- toc: true toc_label: "Unique Title" toc_icon: "heart" # corresponding Font Awesome icon name (without fa prefix) --- ``` ## HTML Elements Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs. ## Body text Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam. ![Smithsonian Image]({{ site.url }}{{ site.baseurl }}/assets/images/3953273590_704e3899d5_m.jpg) {: .image-right} *This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. ### Blockquotes > Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. ## List Types ### Ordered Lists 1. Item one 1. sub item one 2. sub item two 3. sub item three 2. Item two ### Unordered Lists * Item one * Item two * Item three ## Tables | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |---- | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |===== | Foot1 | Foot2 | Foot3 {: rules="groups"} ## Code Snippets ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ================================================ FILE: docs/_posts/2012-01-03-layout-table-of-contents-sticky.md ================================================ --- title: "Layout: Post with Sticky Table of Contents" tags: - table of contents toc: true toc_sticky: true --- "Stick" table of contents to the top of a page by adding `toc_sticky: true` to its YAML Front Matter. ```yaml --- toc: true toc_sticky: true --- ``` ## HTML Elements Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs. ## Body text Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam. ![Smithsonian Image]({{ site.url }}{{ site.baseurl }}/assets/images/3953273590_704e3899d5_m.jpg) {: .image-right} *This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. ### Blockquotes > Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. ## List Types ### Ordered Lists 1. Item one 1. sub item one 2. sub item two 3. sub item three 2. Item two ### Unordered Lists * Item one * Item two * Item three ## Tables | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |---- | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |===== | Foot1 | Foot2 | Foot3 {: rules="groups"} ## Code Snippets ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ================================================ FILE: docs/_posts/2012-03-14-layout-code-excerpt-generated.md ================================================ --- title: "Layout: Code Excerpt (Generated)" categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content with inline code, (e.g. `red`. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems. ================================================ FILE: docs/_posts/2012-03-14-layout-excerpt-defined.md ================================================ --- title: "Layout: Excerpt (Defined)" excerpt: "This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages." categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content. It should be displayed in place of the user-defined excerpt in archive-index pages. This paragraph should be absent from an archive-index page where `post.excerpt` is shown. ================================================ FILE: docs/_posts/2012-03-14-layout-excerpt-generated.md ================================================ --- title: "Layout: Excerpt (Generated)" excerpt_separator: "" categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content. Archive-index pages should display an auto-generated excerpt of this content. Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems. ================================================ FILE: docs/_posts/2012-03-15-layout-author-override.md ================================================ --- title: "Layout: Author Override" author: Billy Rick excerpt: "A post to test author overrides using a data file." last_modified_at: 2018-09-10T12:32:27-04:00 --- Sites that may have content authored from various individuals can be accommodated by using [data files](https://jekyllrb.com/docs/datafiles/). To attribute an author to a post or page that is different from the site author specified in `_config.yml`: **Step 1.** Create `_data/authors.yml` and add authors using the following format. Anything variables found under `author` in `_config.yml` can be used (e.g. `name`, `bio`, `avatar`, author `links`, etc.). ```yaml # /_data/authors.yml Billy Rick: name : "Billy Rick" bio : "What do you want, jewels? I am a very extravagant man." avatar : "/assets/images/bio-photo-2.jpg" links: - label: "Email" icon: "fas fa-fw fa-square-envelope" url: "mailto:billyrick@rick.com" - label: "Website" icon: "fas fa-fw fa-link" url: "https://thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-square-x-twitter" url: "https://twitter.com/extravagantman" Cornelius Fiddlebone: name : "Cornelius Fiddlebone" bio : "I ordered what?" avatar : "/assets/images/bio-photo.jpg" links: - label: "Email" icon: "fas fa-fw fa-square-envelope" url: "mailto:cornelius@thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-square-x-twitter" url: "https://twitter.com/rhymeswithsackit" ``` **Step 2.** Assign one of the authors in `authors.yml` to a post or page you wish to override the `site.author` with. Example: To assign `Billy Rick` as an author for a post the following YAML Front Matter would be applied: ```yaml author: Billy Rick ``` ================================================ FILE: docs/_posts/2012-03-15-layout-author-sidebar-disabled.md ================================================ --- title: "Layout: Author Sidebar Disabled" excerpt: "A post to test disabling author sidebar." author_profile: false --- This post has the author sidebar disabled. To disable add `author_profile: false` to YAML Front Matter. ================================================ FILE: docs/_posts/2012-03-15-layout-header-image-external.md ================================================ --- title: "Layout: Header Image (External URL)" header: image: https://live.staticflickr.com/8084/8396909762_813a2b1829_h.jpg categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Featured image is an external asset and should load. ================================================ FILE: docs/_posts/2012-03-15-layout-header-image-horizontal.md ================================================ --- title: "Layout: Header Image (Horizontal)" header: image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests a horizontal header image. ================================================ FILE: docs/_posts/2012-03-15-layout-header-image-text-readability.md ================================================ --- title: "Layout: Header Image and Text Readability" header: image: /assets/images/unsplash-image-4.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" tags: - sample post - readability - test --- This is a sample post with a large feature image[^1] up top and tons of text. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. *Ea fashion axe [Marfa cillum aliquip](#). Retro Bushwick keytar cliche.* Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. **[Terry Richardson](#) shabby chic +1**, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. [^1]: Texture image courtesty of [Lovetextures](http://www.lovetextures.com/) ================================================ FILE: docs/_posts/2012-03-15-layout-header-image-vertical.md ================================================ --- title: "Layout: Header Image (Vertical)" header: image: /assets/images/unsplash-image-6.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests a vertical header image. ================================================ FILE: docs/_posts/2012-03-15-layout-header-overlay-color.md ================================================ --- title: "Layout: Header Overlay with Background Fill" header: overlay_color: "#333" categories: - Layout - Uncategorized tags: - edge case - image - layout --- This post should display a **header with a solid background color**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay headers. ================================================ FILE: docs/_posts/2012-03-15-layout-header-overlay-image-tagline.md ================================================ --- title: "Layout: Header Image Overlay with Custom Tagline" tagline: "This is a custom tagline content which overrides the *default* page excerpt." header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2020-01-07T13:05:25-05:00 --- This post should display a **header with an overlay image** and **custom tagline**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay header images with custom `page.tagline`. ```yaml tagline: "This is a custom tagline content which overrides the default page excerpt." header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" ``` ================================================ FILE: docs/_posts/2012-03-15-layout-header-overlay-image.md ================================================ --- title: "Layout: Header Image Overlay" header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Learn more" url: "https://unsplash.com" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2018-03-20T16:00:52-04:00 --- This post should display a **header with an overlay image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay header images. ## Overlay filter You can use it by specifying the opacity (between 0 and 1) of a black overlay like so: ![transparent black overlay]({{ "/assets/images/mm-header-overlay-black-filter.jpg" | relative_url }}) ```yaml excerpt: "This post should [...]" header: overlay_image: /assets/images/unsplash-image-1.jpg overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "More Info" url: "https://unsplash.com" ``` Or if you want to do more fancy things, go full rgba: ![transparent red overlay]({{ "/assets/images/mm-header-overlay-red-filter.jpg" | relative_url }}) ```yaml excerpt: "This post should [...]" header: overlay_image: /assets/images/unsplash-image-1.jpg overlay_filter: rgba(255, 0, 0, 0.5) caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "More Info" url: "https://unsplash.com" ``` ================================================ FILE: docs/_posts/2012-03-15-layout-more-tag.md ================================================ --- title: "Layout: More Tag" excerpt_separator: categories: - Layout - Uncategorized tags: - content - read more - layout --- This content is before the [excerpt separator tag](http://jekyllrb.com/docs/posts/#post-excerpts). Additional content before the more tag. And this content is after the more tag. ================================================ FILE: docs/_posts/2012-03-15-layout-sidebar-custom.md ================================================ --- title: "Layout: Sidebar Custom" excerpt: "A post with custom sidebar content." last_modified_at: 2021-06-23T07:53:04-04:00 author_profile: false sidebar: - title: "Title" image: "/assets/images/350x250.png" image_alt: "image" text: "Some text here." - title: "Another Title" text: "More text here." nav: sidebar-sample --- This post has a custom sidebar set in the post's YAML Front Matter. An example of how that YAML could look is: ```yaml sidebar: - title: "Title" image: "/assets/images/your-image.jpg" image_alt: "image" text: "Some text here." - title: "Another Title" text: "More text here." nav: sidebar-sample ``` ================================================ FILE: docs/_posts/2012-03-15-layout-sidebar-nav-list.md ================================================ --- title: "Layout: Sidebar with Navigation List" excerpt: "A post with a sidebar navigation list." author_profile: false sidebar: title: "Sample Title" nav: sidebar-sample --- This post has a custom navigation list set in the post's YAML Front Matter. ```yaml sidebar: title: "Sample Title" nav: sidebar-sample ``` Along with navigation elements set in `_data/navigation.yml`. ```yaml sidebar-sample: - title: "Parent Page A" children: - title: "Child Page A1" url: / - title: "Child Page A2" url: / - title: "Child Page A3" url: / - title: "Child Page A4" url: / - title: "Parent Page B" children: - title: "Child Page B1" url: / - title: "Child Page B2" url: / - title: "Child Page B3" url: / - title: "Child Page B4" url: / - title: "Child Page B5" url: / - title: "Parent Page C" children: - title: "Child Page C1" url: / - title: "Child Page C2" url: / - title: "Child Page C3" url: / - title: "Child Page C4" url: / - title: "Child Page C5" url: / - title: "Parent Page D" children: - title: "Child Page D1" url: / - title: "Child Page D2" url: / ``` ================================================ FILE: docs/_posts/2012-05-22-markup-text-readability-wide-page.md ================================================ --- title: "Wide Single Layout Page" classes: wide excerpt: "A page with `classes: wide` set to expand the main content's width." tags: - sample post - readability - test --- When using `layout: single` add the following front matter to a page or post to widen the main content: ```yaml classes: wide ``` Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. ================================================ FILE: docs/_posts/2012-05-22-markup-text-readability.md ================================================ --- title: "Markup: Text Readability Test" excerpt: "A bunch of text to test readability." tags: - sample post - readability - test --- Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. ================================================ FILE: docs/_posts/2013-01-05-markup-title-with-markup.md ================================================ --- title: "Markup: Title *with* **Markdown**" categories: - Markdown tags: - css - html - title --- Verify that: * The post title renders the word "with" in *italics* and the word "Markdown" in **bold**. * The post title markup should be removed from the browser window / tab. ================================================ FILE: docs/_posts/2013-01-05-markup-title-with-special-characters.md ================================================ --- title: "Markup: Title with Special --- Characters" categories: - Markup tags: - html - markup - post - title --- Putting special characters in the title should have no adverse effect on the layout or functionality. Special characters in the post title have been known to cause issues with JavaScript and XML when not properly encoded and escaped. ## Latin Character Tests This is a test to see if the fonts used in this theme support basic Latin characters.
! # $ % & ( ) *
+ , . / 1 2 3 4
5 6 7 8 9 : ; > = <
? @ A B C D E F G H
I J K L M N O P Q R
S T U V W X Y Z [
] ^ _ ` a b c d e f
g h i j k l m n o p
q r s t u v w x y z
{ | } ~
================================================ FILE: docs/_posts/2013-01-09-markup-text-alignment.md ================================================ --- title: "Markup: Text Alignment" categories: - Markup tags: - alignment - content - css - markup --- ### Default This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. ### Left Align This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment. {: style="text-align: left;"} ### Center Align This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes. {: style="text-align: center;"} ### Right Align This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss. {: style="text-align: right;"} ### Justify Align This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude. {: style="text-align: justify;"} ================================================ FILE: docs/_posts/2013-01-10-markup-image-alignment.md ================================================ --- title: "Markup: Image Alignment" categories: - Markup tags: - alignment - captions - content - css - image - markup --- Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. ![image-center]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-580x300.jpg){: .align-center} The image above happens to be **centered**. ![image-left]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-150x150.jpg){: .align-left} The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished! And now for a **massively large image**. It also has **no alignment**. ![no-alignment]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-1200x4002.jpg) The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. ![image-right]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-300x200.jpg){: .align-right} And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right. And just when you thought we were done, we're going to do them all over again with captions!
Look at 580 x 300 getting some love.
The figure above happens to be **centered**. The caption also has a link in it, just to see if it does anything funky.
Itty-bitty caption.
The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished! And now for a **massively large image**. It also has **no alignment**.
Massive image comment for your eyeballs.
The figure element above has an inline style of `width: 1200px` set which should break it outside of the normal content flow.
Feels good to be right all the time.
And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right. And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! ================================================ FILE: docs/_posts/2013-01-11-markup-html-tags-and-formatting.md ================================================ --- title: "Markup: HTML Tags and Formatting" header: teaser: "assets/images/markup-syntax-highlighting-teaser.jpg" categories: - Markup tags: - content - css - formatting - html - markup toc: true --- A variety of common markup showing how the theme styles them. ## Header two ### Header three #### Header four ##### Header five ###### Header six ## Blockquotes Single line blockquote: > Stay hungry. Stay foolish. Multi line blockquote with a cite reference: > People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs --- Apple Worldwide Developers' Conference, 1997 {: .small} ## Tables | Employee | Salary | | | -------- | ------ | ------------------------------------------------------------ | | [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. | | [Jane Doe](#) | $100K | For all the blogging she does. | | [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. | | [Jane Bloggs](#) | $100B | With hair like that?! Enough said. | | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |-----------------------------| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |=============================| | Foot1 | Foot2 | Foot3 | ## Definition Lists Definition List Title : Definition list division. Startup : A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model. #dowork : Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends. Do It Live : I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one. ## Unordered Lists (Nested) * List item one * List item one * List item one * List item two * List item three * List item four * List item two * List item three * List item four * List item two * List item three * List item four ## Ordered List (Nested) 1. List item one 1. List item one 1. List item one 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four ## Forms
Personalia: Name:
Email:
Date of birth:
## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` [Default Button](#){: .btn} [Primary Button](#){: .btn .btn--primary} [Success Button](#){: .btn .btn--success} [Warning Button](#){: .btn .btn--warning} [Danger Button](#){: .btn .btn--danger} [Info Button](#){: .btn .btn--info} [Inverse Button](#){: .btn .btn--inverse} [Light Outline Button](#){: .btn .btn--light-outline} ```markdown [Default Button Text](#link){: .btn} [Primary Button Text](#link){: .btn .btn--primary} [Success Button Text](#link){: .btn .btn--success} [Warning Button Text](#link){: .btn .btn--warning} [Danger Button Text](#link){: .btn .btn--danger} [Info Button Text](#link){: .btn .btn--info} [Inverse Button](#link){: .btn .btn--inverse} [Light Outline Button](#link){: .btn .btn--light-outline} ``` [X-Large Button](#){: .btn .btn--primary .btn--x-large} [Large Button](#){: .btn .btn--primary .btn--large} [Default Button](#){: .btn .btn--primary } [Small Button](#){: .btn .btn--primary .btn--small} ```markdown [X-Large Button](#link){: .btn .btn--primary .btn--x-large} [Large Button](#link){: .btn .btn--primary .btn--large} [Default Button](#link){: .btn .btn--primary } [Small Button](#link){: .btn .btn--primary .btn--small} ``` ## Notices **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice}` class. {: .notice} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--primary}` class. {: .notice--primary} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--info}` class. {: .notice--info} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--warning}` class. {: .notice--warning} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--success}` class. {: .notice--success} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--danger}` class. {: .notice--danger} ## HTML Tags ### Address Tag
1 Infinite Loop
Cupertino, CA 95014
United States
### Anchor Tag (aka. Link) This is an example of a [link](http://apple.com "Apple"). ### Abbreviation Tag The abbreviation CSS stands for "Cascading Style Sheets". *[CSS]: Cascading Style Sheets ### Cite Tag "Code is poetry." ---Automattic ### Code Tag You will learn later on in these tests that `word-wrap: break-word;` will be your best friend. ### Strike Tag This tag will let you strikeout text. ### Emphasize Tag The emphasize tag should _italicize_ text. ### Insert Tag This tag should denote inserted text. ### Keyboard Tag This scarcely known tag emulates keyboard text, which is usually styled like the `` tag. ### Preformatted Tag This tag styles large blocks of code.
.post-title {
	margin: 0 0 5px;
	font-weight: bold;
	font-size: 38px;
	line-height: 1.2;
	and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}
### Quote Tag Developers, developers, developers… –Steve Ballmer ### Strong Tag This tag shows **bold text**. ### Subscript Tag Getting our science styling on with H2O, which should push the "2" down. ### Superscript Tag Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. ### Variable Tag This allows you to denote variables. ================================================ FILE: docs/_posts/2013-05-22-markup-more-images.md ================================================ --- title: "Markup: Another Post with Images" excerpt: "Examples and code for displaying images in posts." header: teaser: "http://farm9.staticflickr.com/8426/7758832526_cc8f681e48_c.jpg" tags: - sample post - images - test --- Here are some examples of what a post with images might look like. If you want to display two or three images next to each other responsively use `figure` with the appropriate `class`. Each instance of `figure` is auto-numbered and displayed in the caption. ### Figures (for images or video) #### One Up
Morning Fog Emerging From Trees by A Guy Taking Pictures, on Flickr.
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. #### Two Up Apply the `half` class like so to display two images side by side that share the same caption. ```html
Caption describing these two images.
``` And you'll get something that looks like this:
Two images.
#### Three Up Apply the `third` class like so to display three images side by side that share the same caption. ```html
Caption describing these three images.
``` And you'll get something that looks like this:
Three images.
================================================ FILE: docs/_posts/2013-08-16-markup-syntax-highlighting.md ================================================ --- title: "Markup: Syntax Highlighting" excerpt: "Post displaying the various ways of highlighting code in Markdown." last_modified_at: 2018-01-03T09:45:06-05:00 header: teaser: "assets/images/markup-syntax-highlighting-teaser.jpg" tags: - code - syntax highlighting toc: true --- Syntax highlighting is a feature that displays source code, in different colors and fonts according to the category of terms. This feature facilitates writing in a structured language such as a programming language or a markup language as both structures and syntax errors are visually distinct. Highlighting does not affect the meaning of the text itself; it is intended only for human readers.[^1] [^1]: ### GFM Code Blocks GitHub Flavored Markdown [fenced code blocks](https://help.github.com/articles/creating-and-highlighting-code-blocks/) are supported. To modify styling and highlight colors edit `/_sass/syntax.scss`. ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` {% highlight scss %} .highlight { margin: 0; padding: 1em; font-family: $monospace; font-size: $type-size-7; line-height: 1.8; } {% endhighlight %} ```html {% raw %}{% endraw %} ``` ```ruby module Jekyll class TagIndex < Page def initialize(site, base, dir, tag) @site = site @base = base @dir = dir @name = 'index.html' self.process(@name) self.read_yaml(File.join(base, '_layouts'), 'tag_index.html') self.data['tag'] = tag tag_title_prefix = site.config['tag_title_prefix'] || 'Tagged: ' tag_title_suffix = site.config['tag_title_suffix'] || '–' self.data['title'] = "#{tag_title_prefix}#{tag}" self.data['description'] = "An archive of posts tagged #{tag}." end end end ``` ### Code Blocks in Lists Indentation matters. Be sure the indent of the code block aligns with the first non-space character after the list item marker (e.g., `1.`). Usually this will mean indenting 3 spaces instead of 4. 1. Do step 1. 2. Now do this: ```ruby def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT. ``` 3. Now you can do this. ### Jekyll Highlight Tag An example of a code blocking using Jekyll's [`{% raw %}{% highlight %}{% endraw %}` tag](https://jekyllrb.com/docs/templates/#code-snippet-highlighting). {% highlight javascript linenos %} // 'gulp html' -- does nothing // 'gulp html --prod' -- minifies and gzips HTML files for production gulp.task('html', () => { return gulp.src(paths.siteFolderName + paths.htmlPattern) .pipe(when(argv.prod, htmlmin({ removeComments: true, collapseWhitespace: true, collapseBooleanAttributes: false, removeAttributeQuotes: false, removeRedundantAttributes: false, minifyJS: true, minifyCSS: true }))) .pipe(when(argv.prod, size({title: 'optimized HTML'}))) .pipe(when(argv.prod, gulp.dest(paths.siteFolderName))) .pipe(when(argv.prod, gzip({append: true}))) .pipe(when(argv.prod, size({ title: 'gzipped HTML', gzip: true }))) .pipe(when(argv.prod, gulp.dest(paths.siteFolderName))) }); {% endhighlight %} {% highlight wl linenos %} Module[{}, Sqrt[2] 4 ] {% endhighlight %} ### GitHub Gist Embed An example of a Gist embed below. ================================================ FILE: docs/_posts/2016-02-24-welcome-to-jekyll.md ================================================ --- title: "Welcome to Jekyll!" header: teaser: "/assets/images/500x300.png" categories: - Jekyll tags: - update --- You'll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works. Jekyll also offers powerful support for code snippets: ```ruby def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT. ``` Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. [jekyll-docs]: http://jekyllrb.com/docs/home [jekyll-gh]: https://github.com/jekyll/jekyll [jekyll-talk]: https://talk.jekyllrb.com/ ================================================ FILE: docs/_posts/2016-09-21-gemified-theme-alpha.md ================================================ --- title: "Gemified Theme -- Alpha Release" last_modified_at: 2018-03-20T16:00:58-04:00 categories: - Jekyll tags: - update toc: true toc_label: "Getting Started" --- Jekyll [themes distributed as Ruby gems](http://jekyllrb.com/docs/themes/) are finally here to make installing and upgrading much easier. Gone are the days of forking a repo just to "install it". Or dealing with merge conflicts when pulling in upstream commits to "upgrade it". If you're interested in testing out Minimal Mistakes as a gemified theme read on. There are a few caveats though: 1. Support for a theme `assets` folder was recently [added to Jekyll core](https://github.com/jekyll/jekyll/pull/5364), but has yet to be released or rolled into the `github-pages` gem. Meaning you can't use Minimal Mistakes as a Ruby gem there just yet... locally served or self-hosted installs should be fine if you don't mind using a pre-release version of Jekyll. 2. Windows users can't currently use themes packaged as gems due to a [bug with file paths](https://github.com/jekyll/jekyll/issues/5192) in Jekyll core. This is being worked on so hopefully a [fix is on the way](https://github.com/jekyll/jekyll/pull/5256) soon. Fine with all that? Great. Let's continue. If you're migrating a site already using Minimal Mistakes and haven't customized any of the `_includes`, `_layouts`, `_sass` partials, or `assets` this should be quick and painless. ## Step 1: Remove Theme Files Remove `_includes`, `_layouts`, `_sass`, `assets` folders and files within. You won't need these anymore as they're bundled in the theme. If you customized any of these then leave them alone and only remove the untouched ones. If setup correctly your modified versions should act as [overrides](http://jekyllrb.com/docs/themes/#overriding-theme-defaults) to the versions bundled with the theme. ## Step 2: Update `Gemfile` In order to test you'll need to install pre-release gems of Jekyll and Minimal Mistakes. Start by replacing `gem "github-pages"` or `gem "jekyll"` with the following: ```ruby gem "jekyll", :git => "https://github.com/jekyll/jekyll.git" ``` Then add the pre-release Minimal Mistakes theme gem: ```ruby gem "minimal-mistakes-jekyll", :git => "https://github.com/mmistakes/minimal-mistakes.git", :branch => "feature/theme-gem"` ``` When finished your `Gemfile` should look something like this: ```ruby source "https://rubygems.org" gem "jekyll", :git => "https://github.com/jekyll/jekyll.git" gem "minimal-mistakes-jekyll", :git => "https://github.com/mmistakes/minimal-mistakes.git", :branch => "feature/theme-gem" group :jekyll_plugins do # gem "jekyll-archives" gem "jekyll-paginate" gem "jekyll-sitemap" gem "jekyll-gist" gem "jekyll-feed" end ``` ## Step 3: Run Bundler Run `bundle install` (or `bundle update` if you're updating an existing repo) to install the pre-release gems. ## Step 4: Install the Theme Add `theme: "minimal-mistakes-jekyll"` to your `_config.yml` file. If you're migrating from an existing Minimal Mistakes site you shouldn't have to change anything else after this. If it's a new site consult then docs to [properly config]({{ "/docs/configuration/" | relative_url }}). **Please Note:** Paths for image headers, overlays, teasers, [galleries]({{ "/docs/helpers/#gallery" | relative_url }}), and [feature rows]({{ "/docs/helpers/#feature-row" | relative_url }}) have changed and now require a full path. Instead of just `image: filename.jpg` you'll need to use the full path eg: `image: assets/images/filename.jpg`. The preferred location is now `assets/images` but can be placed elsewhere or external hosted. This applies for image references in `_config.yml` and `author.yml`. {: .notice--danger} ## Step 5: `jekyll new` Tweaks If this is a new site be sure to add the following files to `_data/` and customize as you see fit. There is currently no way of bundling them in with the theme, so be sure to consult the docs on how to properly use both. - [`_data/ui-text.yml`](https://github.com/mmistakes/minimal-mistakes/blob/master/_data/ui-text.yml) - UI text [documentation]({{ "/docs/ui-text/" | relative_url }}) - [`_data/navigation.yml`](https://github.com/mmistakes/minimal-mistakes/blob/master/_data/navigation.yml) - navigation [documentation]({{ "/docs/navigation/" | relative_url }}) You'll also need to: - Replace `/index.html` with a modified [Minimal Mistakes `index.html`](https://github.com/mmistakes/minimal-mistakes/blob/master/index.html). - Change `layout: post` in `_posts/0000-00-00-welcome-to-jekyll.markdown` to `layout: single`. - Remove `about.md`, or at the very least change `layout: page` to `layout: single` and remove references to `icon-github.html` (or [copy to your `_includes`](https://github.com/jekyll/minima/tree/master/_includes) if using). --- That's it! If all goes well running `bundle exec jekyll serve` should spin-up your site. If you encounter any bumps please file an issue on GitHub and make sure to indicate you're testing the pre-release Ruby gem version. [File an issue](https://github.com/mmistakes/minimal-mistakes/issues/new){: .btn .btn--info .btn--large} Thanks! ================================================ FILE: docs/_posts/2016-10-06-gemified-theme-beta.md ================================================ --- title: "Gemified Theme -- Beta Release" last_modified_at: 2018-03-20T16:01:04-04:00 categories: - Jekyll tags: - update toc: true toc_label: "Getting Started" --- Hot on the heels of Jekyll v3.3.0 is a beta release of Minimal Mistakes... as a gemified theme. [`minimal-mistakes-jekyll`](https://rubygems.org/gems/minimal-mistakes-jekyll) can only be used with Jekyll proper. If you're hosting on GitHub Pages or using that gem the theme won't work. 3rd party themes haven't been white-listed so it's a no go for now. Fine with all that? Great. Let's continue. If you're migrating a site already using Minimal Mistakes and haven't customized any of the `_includes`, `_layouts`, `_sass` partials, or `assets` this should be quick and painless. ## Step 1: Remove Theme Files Remove `_includes`, `_layouts`, `_sass`, `assets` folders and files within. You won't need these anymore as they're bundled in the theme. If you customized any of these then leave them alone and only remove the untouched ones. If setup correctly your modified versions should act as [overrides](http://jekyllrb.com/docs/themes/#overriding-theme-defaults) to the versions bundled with the theme. ## Step 2: Update `Gemfile` Replace `gem "github-pages` or `gem "jekyll"` with `gem "jekyll", "~> 3.3.0"`. You'll need the latest version of Jekyll[^update-jekyll] for Minimal Mistakes to work and load all of the /assets/ properly. [^update-jekyll]: You could also run `bundle update jekyll` to update Jekyll. Add the Minimal Mistakes theme gem: ```ruby gem "minimal-mistakes-jekyll" ``` When finished your `Gemfile` should look something like this: ```ruby source "https://rubygems.org" gem "jekyll", "~> 3.3.0" gem "minimal-mistakes-jekyll" ``` ## Step 3: Run Bundler Run `bundle install` (or `bundle update` if you're updating an existing repo) to install/update Jekyll and the theme. ## Step 4: Install the Theme Add `theme: "minimal-mistakes-jekyll"` to your `_config.yml` file. If you're migrating from an existing Minimal Mistakes site you shouldn't have to change anything else after this. If it's a new site consult then docs to [properly config]({{ "/docs/configuration/" | relative_url }}). **Please Note:** Paths for image headers, overlays, teasers, [galleries]({{ "/docs/helpers/#gallery" | relative_url }}), and [feature rows]({{ "/docs/helpers/#feature-row" | relative_url }}) have changed and now require a full path. Instead of just `image: filename.jpg` you'll need to use the full path eg: `image: assets/images/filename.jpg`. The preferred location is now `assets/images` but can be placed elsewhere or external hosted. This all applies for image references in `_config.yml` and `author.yml` as well. {: .notice--danger} ## Step 5: `jekyll new` Tweaks If this is a new site be sure to add the following files to `_data/` and customize as you see fit. There is currently no way of bundling them in with the theme, so be sure to consult the docs on how to properly use both. - [`_data/ui-text.yml`](https://github.com/mmistakes/minimal-mistakes/blob/master/_data/ui-text.yml) - UI text [documentation]({{ "/docs/ui-text/" | relative_url }}) - [`_data/navigation.yml`](https://github.com/mmistakes/minimal-mistakes/blob/master/_data/navigation.yml) - navigation [documentation]({{ "/docs/navigation/" | relative_url }}) You'll also need to: - Replace `/index.html` with a modified [Minimal Mistakes `index.html`](https://github.com/mmistakes/minimal-mistakes/blob/master/index.html). - Change `layout: post` in `_posts/0000-00-00-welcome-to-jekyll.markdown` to `layout: single`. - Remove `about.md`, or at the very least change `layout: page` to `layout: single` and remove references to `icon-github.html` (or [copy to your `_includes`](https://github.com/jekyll/minima/tree/master/_includes) if using). --- That's it! If all goes well running `bundle exec jekyll serve` should spin-up your site. If you encounter any bumps please file an issue on GitHub and make sure to indicate you're testing the pre-release Ruby gem version. [File an issue](https://github.com/mmistakes/minimal-mistakes/issues/new){: .btn .btn--info .btn--large} Thanks! ================================================ FILE: docs/_posts/2017-01-23-layout-header-video.md ================================================ --- title: "Layout: Header Video" header: video: id: -PVofD2A9t8 provider: youtube categories: - Layout - Uncategorized tags: - video - layout --- This post should display a **header with a responsive video**, if the theme supports it. ## Settings | Parameter | Required | Description | |---------- |--------- | ----------- | | `id` | **Required** | ID of the video | | `provider` | **Required** | Hosting provider of the video, either `youtube` or `vimeo` | ### YouTube To embed the following YouTube video at url `https://www.youtube.com/watch?v=-PVofD2A9t8` (long version) or `https://youtu.be/-PVofD2A9t8` (short version) into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="-PVofD2A9t8" provider="youtube" %}{% endraw %} ``` {% include video id="-PVofD2A9t8" provider="youtube" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: -PVofD2A9t8 provider: youtube ``` ### Vimeo To embed the following Vimeo video at url `https://vimeo.com/212731897` into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="212731897" provider="vimeo" %}{% endraw %} ``` {% include video id="212731897" provider="vimeo" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: 212731897 provider: vimeo ``` ================================================ FILE: docs/_posts/2017-11-28-post-exclude-search.md ================================================ --- title: "Exclude Post from Search Index" search: false categories: - Jekyll last_modified_at: 2018-02-19T08:06:00-05:00 --- This post should not appear in the search index because it has the following YAML Front Matter: ```yaml search: false ``` **Note:** `search: false` only works to exclude posts when using Lunr as a search provider. {: .notice--info} To exclude files when using Algolia as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). ```yaml algolia: # Exclude more files from indexing files_to_exclude: - index.html - index.md - excluded-file.html - _posts/2017-11-28-post-exclude-search.md - subdirectory/*.html ``` ================================================ FILE: docs/_recipes/chocolate-chip-cookies.md ================================================ --- title: "Chocolate Chip Cookies" --- A chocolate chip cookie is a drop cookie that originated in the United States and features chocolate chips as its distinguishing ingredient. The traditional recipe combines a dough composed of butter and both brown and white sugar with semi-sweet chocolate chips. Variations include recipes with other types of chocolate as well as additional ingredients such as nuts or oatmeal. This recipe makes 4 dozen cookies. ## Ingredients * 2 1/4 cups all-purpose flour * 1 teaspoon baking soda * 1/2 teaspoon salt * 1 cup butter, softened and cut to pieces * 1 cup sugar * 1 cup light brown sugar, packed * 2 teaspoons vanilla extract * 2 large eggs * 2 cups semi-sweet chocolate chips * 1/2 teaspoon nutmeg (optional) * 1 cup chopped pecans or walnuts (optional) ## Directions 1. Preheat the oven to 350 F. 2. In a medium bowl, whisk flour with baking soda, nutmeg and salt. 3. In a large bowl, beat butter with sugar and brown sugar until creamy and light. Add vanilla and eggs, one at a time, and mix until incorporated. 4. Gradually add dry mixture into the butter-sugar wet blend, mixing with a spatula until combined. Add chocolate chips and nuts until just mixed. 5. Drop tablespoon-sized clumps onto un-greased cookie sheets. Bake for 8-12 minutes, or until pale brown. Allow to cool on the pan for a minute or three, then transfer cookies to a wire rack to finish cooling. ================================================ FILE: docs/_recipes/oatmeal-cookies.md ================================================ --- title: "Oatmeal Cookies" --- Oatmeal cookies are a proverbial favorite with both kids and adults. This crisp and chewy cookie is loaded with oats, dried fruit, and chopped nuts. ## Ingredients * 1 cup butter, softened 1 cup white sugar * 1 cup packed brown sugar * 2 eggs * 1 teaspoon vanilla extract * 2 cups all-purpose flour * 1 teaspoon baking soda * 1 teaspoon salt * 1 1/2 teaspoons ground cinnamon * 3 cups quick cooking oats ## Directions 1. In a medium bowl, cream together butter, white sugar, and brown sugar. Beat in eggs one at a time, then stir in vanilla. Combine flour, baking soda, salt, and cinnamon; stir into the creamed mixture. Mix in oats. Cover, and chill dough for at least one hour. 2. Preheat the oven to 375 degrees F (190 degrees C). Grease cookie sheets. Roll the dough into walnut sized balls, and place 2 inches apart on cookie sheets. Flatten each cookie with a large fork dipped in sugar. 3. Bake for 8 to 10 minutes in preheated oven. Allow cookies to cool on baking sheet for 5 minutes before transferring to a wire rack to cool completely. ================================================ FILE: docs/_recipes/peanut-butter-cookies.md ================================================ --- title: "Peanut Butter Cookies" --- A peanut butter cookie is a type of cookie that is distinguished for having peanut butter as a principal ingredient. The cookie generally originated in the United States, its development dating back to the 1910s. ## Ingredients * 1 cup unsalted butter * 1 cup crunchy peanut butter * 1 cup white sugar * 1 cup packed brown sugar * 2 eggs 2 * 1/2 cups all-purpose flour * 1 teaspoon baking powder * 1/2 teaspoon salt * 1 1/2 teaspoons baking soda ## Directions 1. Cream butter, peanut butter, and sugars together in a bowl; beat in eggs. 2. In a separate bowl, sift flour, baking powder, baking soda, and salt; stir into butter mixture. Put dough in refrigerator for 1 hour. 3. Roll dough into 1 inch balls and put on baking sheets. Flatten each ball with a fork, making a crisscross pattern. Bake in a preheated 375 degrees F oven for about 10 minutes or until cookies begin to brown. ================================================ FILE: docs/assets/images/browserconfig.xml ================================================ #000000 ================================================ FILE: docs/assets/images/manifest.json ================================================ { "name": "Minimal Mistakes", "icons": [ { "src": "\/images\/android-chrome-36x36.png?v=M44lzPylqQ", "sizes": "36x36", "type": "image\/png", "density": 0.75 }, { "src": "\/images\/android-chrome-48x48.png?v=M44lzPylqQ", "sizes": "48x48", "type": "image\/png", "density": 1 }, { "src": "\/images\/android-chrome-72x72.png?v=M44lzPylqQ", "sizes": "72x72", "type": "image\/png", "density": 1.5 }, { "src": "\/images\/android-chrome-96x96.png?v=M44lzPylqQ", "sizes": "96x96", "type": "image\/png", "density": 2 }, { "src": "\/images\/android-chrome-144x144.png?v=M44lzPylqQ", "sizes": "144x144", "type": "image\/png", "density": 3 }, { "src": "\/images\/android-chrome-192x192.png?v=M44lzPylqQ", "sizes": "192x192", "type": "image\/png", "density": 4 } ] } ================================================ FILE: index.html ================================================ --- layout: home author_profile: true --- ================================================ FILE: minimal-mistakes-jekyll.gemspec ================================================ require "json" package_json = JSON.parse(File.read("package.json")) Gem::Specification.new do |spec| spec.name = "minimal-mistakes-jekyll" spec.version = package_json["version"] spec.authors = ["Michael Rose", "iBug"] spec.summary = %q{A flexible two-column Jekyll theme.} spec.homepage = "https://github.com/mmistakes/minimal-mistakes" spec.license = "MIT" spec.metadata["plugin_type"] = "theme" spec.files = `git ls-files -z`.split("\x0").select do |f| f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i) end spec.add_runtime_dependency "jekyll", ">= 3.7", "< 5.0" spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3" spec.add_runtime_dependency "jekyll-gist", "~> 1.5" spec.add_runtime_dependency "jekyll-feed", "~> 0.1" spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", ">= 12.3.3" end ================================================ FILE: package.json ================================================ { "name": "minimal-mistakes", "private": true, "version": "4.28.0", "description": "Minimal Mistakes 2 column Jekyll theme.", "repository": { "type": "git", "url": "https://github.com/mmistakes/minimal-mistakes.git" }, "keywords": [ "jekyll", "theme", "minimal" ], "author": "Michael Rose", "license": "MIT", "bugs": { "url": "https://github.com/mmistakes/minimal-mistakes/issues" }, "homepage": "https://mmistakes.github.io/minimal-mistakes/", "engines": { "node": ">= 0.10.0" }, "devDependencies": { "uglify-js": "^3.17.4" } } ================================================ FILE: staticman.yml ================================================ # Name of the property. You can have multiple properties with completely # different config blocks for different sections of your site. # For example, you can have one property to handle comment submission and # another one to handle posts. # To encrypt strings use the following endpoint: # https://{your Staticman API URL}/v[2|3]/encrypt/{TEXT TO BE ENCRYPTED} comments: # (*) REQUIRED # # Names of the fields the form is allowed to submit. If a field that is # not here is part of the request, an error will be thrown. allowedFields: ["name", "email", "url", "message"] # (*) REQUIRED WHEN USING NOTIFICATIONS # # When allowedOrigins is defined, only requests sent from one of the domains # listed will be accepted. The origin is sent as part as the `options` object # (e.g. 1.0' end gem "wdm", "~> 0.1.0" if Gem.win_platform? gem "webrick" ================================================ FILE: test/_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 : "minimal-mistakes-jekyll" minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise" # Site Settings locale : "en-US" title : "Minimal Mistakes" title_separator : "-" subtitle : "Development Test Site" name : "Your Name" description : "Minimal Mistakes theme test." url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io" baseurl : "/test" repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes" teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" logo : "/assets/images/apple-touch-icon.png" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png" masthead_title : "Custom Title" # overrides the website title displayed in the masthead, use " " for no title # breadcrumbs : false # true, false (default) words_per_minute : 200 comments: provider : # false (default), "disqus", "discourse", "facebook", "staticman", "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" staticman: branch : # "master" endpoint : # "https://{your Staticman v3 API}/v3/entry/github/" atom_feed: path : # blank (default) uses feed.xml search : true # true, false (default) search_full_content : true # true, false (default) search_provider : "lunr" lunr: search_within_pages : true algolia: application_id : "QB6HVGBSBA" index_name : "dev_minimal-mistakes" search_only_api_key : "9d5014e5bbc77372547bce778dfa5663" powered_by : true # SEO Related google_site_verification : bing_site_verification : yandex_site_verification : # Social Sharing twitter: username : "mmistakes" facebook: username : app_id : publisher : og_image : "/assets/images/bio-photo.jpg" # 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 - https://twitter.com/ - https://github.com/ # Analytics analytics: provider : false # false (default), "google", "google-universal", "google-gtag", "custom" google: tracking_id : # Site Author author: name : "Your Name" avatar : "/assets/images/bio-photo.jpg" bio : "I am an **amazing** person." location : "Somewhere" links: - label: "Your Website" icon: "fas fa-fw fa-link" url: "https://your-site.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.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-twitter-square" url: "https://twitter.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/" 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 - node_modules - package.json - Rakefile - README - tmp keep_files: - .git - .svn encoding: "utf-8" markdown_ext: "markdown,mkdown,mkdn,mkd,md" # Liquid strict_front_matter: true liquid: error_mode: strict # 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 # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style # Outputting permalink: /:categories/:title/ paginate: 5 # amount of posts to show paginate_path: /page:num/ timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones # 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) # - /tags/my-awesome-tag/index.html ~> path: /tags/ # - /categories/my-awesome-category/index.html ~> path: /categories/ # - /my-awesome-category/index.html ~> path: / category_archive: type: liquid path: /categories/ tag_archive: type: liquid path: /tags/ # 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 # - http://jch.penibelst.de/ compress_html: clippings: all ignore: envs: development # Collections collections: recipes: output: true permalink: /:collection/:path/ pets: output: true permalink: /:collection/:path/ portfolio: output: true permalink: /:collection/:path/ # Defaults defaults: # _posts - scope: path: "" type: posts values: layout: single author_profile: true read_time: true share: true related: true # _pages - scope: path: "_pages" type: pages values: layout: single author_profile: true # _recipes - scope: path: "" type: recipes values: layout: single author_profile: true share: true # _pets - scope: path: "" type: pets values: layout: single author_profile: true share: true # _portfolio - scope: path: "" type: portfolio values: layout: single author_profile: false share: true ================================================ FILE: test/_data/authors.yml ================================================ # Authors Billy Rick: name : "Billy Rick" bio : "What do you want, jewels? I am a very extravagant man." avatar : "/assets/images/bio-photo-2.jpg" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:billyrick@rick.com" - label: "Website" icon: "fas fa-fw fa-link" url: "https://thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/extravagantman" Cornelius Fiddlebone: name : "Cornelius Fiddlebone" bio : "I ordered what?" avatar : "/assets/images/bio-photo.jpg" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:cornelius@thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/rhymeswithsackit" ================================================ FILE: test/_data/navigation.yml ================================================ # main links links main: - title: "About" url: https://mmistakes.github.io/minimal-mistakes/about/ - title: "Posts" url: /year-archive/ - title: "Collections" url: /collection-archive/ - title: "Sitemap" url: /sitemap/ - title: "Extra Menu Item 1" url: / - title: "Extra Menu Item 2" url: / - title: "Extra Menu Item Long Title" url: / # sidebar navigation list sample sidebar-sample: - title: "Parent Page A" children: - title: "Child Page A1" url: /child-page-a1/ - title: "Child Page A2" url: /child-page-a2/ - title: "Child Page A3" url: /child-page-a3/ - title: "Child Page A4" url: /child-page-a4/ - title: "Parent Page B" children: - title: "Child Page B1" url: /child-page-b1/ - title: "Child Page B2" url: /child-page-b2/ - title: "Child Page B3" url: /child-page-b3/ - title: "Child Page B4" url: /child-page-b4/ - title: "Child Page B5" url: /child-page-b5/ - title: "Parent Page C" children: - title: "Child Page C1" url: /child-page-c1/ - title: "Child Page C2" url: /child-page-c2/ - title: "Child Page C3" url: /child-page-c3/ - title: "Child Page C4" url: /child-page-c4/ - title: "Child Page C5" url: /child-page-c5/ - title: "Parent Page D" children: - title: "Child Page D1" url: /child-page-d1/ - title: "Child Page D2" url: /child-page-d2/ - title: "Child Page D3 (External)" url: https://your-domain.com ================================================ FILE: test/_pages/404.md ================================================ --- title: "Page Not Found" excerpt: "Page not found. Your pixels are in another canvas." sitemap: false permalink: /404.html --- Sorry, but the page you were trying to view does not exist. ================================================ FILE: test/_pages/archive-layout-with-content.md ================================================ --- title: "Archive Layout with Content" layout: archive permalink: /archive-layout-with-content/ --- A variety of common markup showing how the theme styles them. # Header one ## Header two ### Header three #### Header four ##### Header five ###### Header six ## Blockquotes Single line blockquote: > Stay hungry. Stay foolish. Multi line blockquote with a cite reference: > People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs --- Apple Worldwide Developers' Conference, 1997 {: .small} ## Tables | Employee | Salary | | | -------- | ------ | ------------------------------------------------------------ | | [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. | | [Jane Doe](#) | $100K | For all the blogging she does. | | [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. | | [Jane Bloggs](#) | $100B | With hair like that?! Enough said. | | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |-----------------------------| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |=============================| | Foot1 | Foot2 | Foot3 | ## Definition Lists Definition List Title : Definition list division. Startup : A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model. #dowork : Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends. Do It Live : I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one. ## Unordered Lists (Nested) * List item one * List item one * List item one * List item two * List item three * List item four * List item two * List item three * List item four * List item two * List item three * List item four ## Ordered List (Nested) 1. List item one 1. List item one 1. List item one 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` [Primary Button](#){: .btn} [Success Button](#){: .btn .btn--success} [Warning Button](#){: .btn .btn--warning} [Danger Button](#){: .btn .btn--danger} [Info Button](#){: .btn .btn--info} [Inverse Button](#){: .btn .btn--inverse} [Light Outline Button](#){: .btn .btn--light-outline} ```markdown [Primary Button Text](#link){: .btn} [Success Button Text](#link){: .btn .btn--success} [Warning Button Text](#link){: .btn .btn--warning} [Danger Button Text](#link){: .btn .btn--danger} [Info Button Text](#link){: .btn .btn--info} [Inverse Button](#link){: .btn .btn--inverse} [Light Outline Button](#link){: .btn .btn--light-outline} ``` [X-Large Button](#){: .btn .btn--x-large} [Large Button](#){: .btn .btn--large} [Default Button](#){: .btn} [Small Button](#){: .btn .btn--small} ```markdown [X-Large Button](#link){: .btn .btn--x-large} [Large Button](#link){: .btn .btn--large} [Default Button](#link){: .btn} [Small Button](#link){: .btn .btn--small} ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ## HTML Tags ### Address Tag
1 Infinite Loop
Cupertino, CA 95014
United States
### Anchor Tag (aka. Link) This is an example of a [link](http://apple.com "Apple"). ### Abbreviation Tag The abbreviation CSS stands for "Cascading Style Sheets". *[CSS]: Cascading Style Sheets ### Cite Tag "Code is poetry." ---Automattic ### Code Tag You will learn later on in these tests that `word-wrap: break-word;` will be your best friend. ### Strike Tag This tag will let you strikeout text. ### Emphasize Tag The emphasize tag should _italicize_ text. ### Insert Tag This tag should denote inserted text. ### Keyboard Tag This scarcely known tag emulates keyboard text, which is usually styled like the `` tag. ### Preformatted Tag This tag styles large blocks of code.
.post-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.2;
  and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}
### Quote Tag Developers, developers, developers… –Steve Ballmer ### Strong Tag This tag shows **bold text**. ### Subscript Tag Getting our science styling on with H2O, which should push the "2" down. ### Superscript Tag Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. ### Variable Tag This allows you to denote variables. ================================================ FILE: test/_pages/category-archive-grid.md ================================================ --- title: "Posts by Category (grid view)" layout: categories permalink: /categories-grid/ entries_layout: grid author_profile: true --- ================================================ FILE: test/_pages/category-archive.md ================================================ --- title: "Posts by Category" layout: categories permalink: /categories/ author_profile: true --- ================================================ FILE: test/_pages/collection-archive-grid.html ================================================ --- layout: archive title: "Posts by Collection (grid view)" permalink: /collection-archive-grid/ entries_layout: grid author_profile: true --- {% assign entries_layout = page.entries_layout | default: 'list' %} {% capture written_label %}'None'{% endcapture %} {% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %}
{% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %}
{% for post in collection.docs %} {% include archive-single.html type=entries_layout %} {% endfor %}
{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑
{% endunless %} {% endfor %} ================================================ FILE: test/_pages/collection-archive.html ================================================ --- layout: archive title: "Posts by Collection" permalink: /collection-archive/ author_profile: true --- {% capture written_label %}'None'{% endcapture %} {% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == "posts" %} {% include archive-single.html type=page.entries_layout %} {% endunless %} {% endfor %} {% endfor %} ================================================ FILE: test/_pages/edge-case-grid.md ================================================ --- title: Edge Case (grid view) layout: category permalink: /categories/edge-case-grid/ taxonomy: Edge Case entries_layout: grid --- Sample post listing for the category `Edge Case`. ================================================ FILE: test/_pages/edge-case.md ================================================ --- title: Edge Case layout: category permalink: /categories/edge-case/ taxonomy: Edge Case --- Sample post listing for the category `Edge Case`. ================================================ FILE: test/_pages/lorem-ipsum.md ================================================ --- title: "Lorem Ipsum" permalink: /lorem-ipsum/ --- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper. Praesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt. Curabitur non elit. Pellentesque iaculis, nisl non aliquet adipiscing, purus urna aliquet orci, sed sodales pede neque at massa. Pellentesque laoreet, enim eget varius mollis, sapien erat suscipit metus, sit amet iaculis nulla sapien id felis. Aliquam erat volutpat. Nam congue nulla a ligula. Morbi tempor hendrerit erat. Curabitur augue. Vestibulum nulla est, commodo et, fringilla quis, bibendum eget, ipsum. Suspendisse pulvinar iaculis ante. Mauris dignissim ante quis nisi. Aliquam ante mi, aliquam et, pellentesque ac, dapibus et, enim. In vulputate justo vel magna. Phasellus imperdiet justo. Proin odio orci, dapibus id, porta a, pellentesque id, erat. Aliquam erat volutpat. Mauris nonummy varius libero. Sed dolor ipsum, tempor non, aliquet et, pulvinar quis, dui. Pellentesque mauris diam, lobortis id, varius varius, facilisis at, nulla. Cras pede. Nullam id velit sit amet turpis tincidunt sagittis. Nunc malesuada. Nunc consequat scelerisque odio. Donec eu leo. Nunc pellentesque felis sed odio. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus lobortis metus in lectus. Cras mollis quam eget sapien. Pellentesque non lorem sit amet sem lacinia euismod. Nulla eget diam eget leo imperdiet consequat. Morbi nunc magna, pellentesque eu, porta at, ultricies ut, neque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In tincidunt. Praesent ut orci id eros congue ultrices. Mauris non neque. Donec nulla ante, molestie sit amet, fermentum nec, blandit sit amet, purus. Fusce eget diam eu odio iaculis mollis. Phasellus consectetuer pede quis nisi. Proin non sem ut elit pulvinar faucibus. In a turpis nec augue fringilla elementum. Nullam felis. Donec in nulla. Suspendisse sodales, turpis in suscipit ullamcorper, enim nunc sagittis risus, eu auctor velit tortor ut turpis. Mauris id augue at neque aliquam eleifend. Sed eget augue. Nunc faucibus ligula sed massa. Etiam non nulla. Etiam accumsan ullamcorper nisl. In pharetra massa at nunc. Nunc elementum. Duis sodales enim nec libero. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Praesent dapibus eros sodales urna. Duis magna nisi, lobortis quis, tincidunt rutrum, posuere non, ipsum. Aliquam convallis neque vitae diam. In diam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis fermentum arcu in tortor. Sed nibh leo, rhoncus eu, fermentum et, scelerisque ac, massa. Cras id turpis. Etiam commodo sem luctus lorem. Morbi at mi. In rutrum. Aenean luctus pede euismod tortor. Phasellus dictum. Cras neque justo, venenatis sit amet, tristique et, vulputate in, dui. Etiam sed mi gravida sapien imperdiet dictum. Aliquam gravida orci a tortor. Donec tempor. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus risus ante, pellentesque vitae, luctus eget, scelerisque sed, libero. Donec massa. Donec libero mauris, volutpat at, convallis vel, laoreet euismod, augue. In accumsan malesuada risus. Mauris metus magna, condimentum in, nonummy non, ornare eu, velit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin posuere. Proin rhoncus rutrum lorem. Phasellus dignissim massa non libero volutpat tincidunt. In hac habitasse platea dictumst. Phasellus eget eros. Nulla in nulla. Vivamus quis mauris. Maecenas pharetra rhoncus tellus. Sed sit amet lacus. Quisque interdum felis a tellus. Aliquam sed diam ac velit aliquam rutrum. Morbi commodo, risus a pulvinar adipiscing, tortor pede posuere risus, ac ornare tellus massa nec lectus. Vivamus mollis metus ac sapien. Nam sed est a libero ullamcorper dapibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean a erat ac nibh accumsan volutpat. Phasellus pulvinar consequat turpis. Curabitur ante metus, tempus ut, consequat eu, sollicitudin sit amet, justo. Duis ut libero. Հայերեն Lorem Ipsum-ը տպագրության և տպագրական արդյունաբերության համար նախատեսված մոդելային տեքստ է: Սկսած 1500-ականներից\` Lorem Ipsum-ը հանդիսացել է տպագրական արդյունաբերության ստանդարտ մոդելային տեքստ, ինչը մի անհայտ տպագրիչի կողմից տարբեր տառատեսակների օրինակների գիրք ստեղծելու ջանքերի արդյունք է: Այս տեքստը ոչ միայն կարողացել է գոյատևել հինգ դարաշրջան, այլև ներառվել է էլեկտրոնային տպագրության մեջ\` մնալով էապես անփոփոխ: Այն հայտնի է դարձել 1960-ականներին Lorem Ipsum բովանդակող Letraset էջերի թողարկման արդյունքում, իսկ ավելի ուշ համակարգչային տպագրության այնպիսի ծրագրերի թողարկման հետևանքով, ինչպիսին է Aldus PageMaker-ը, որը ներառում է Lorem Ipsum-ի տարատեսակներ: Български Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия. Lorem Ipsum е индустриален стандарт от около 1500 година, когато неизвестен печатар взема няколко печатарски букви и ги разбърква, за да напечата с тях книга с примерни шрифтове. Този начин не само е оцелял повече от 5 века, но е навлязъл и в публикуването на електронни издания като е запазен почти без промяна. Популяризиран е през 60те години на 20ти век със издаването на Letraset листи, съдържащи Lorem Ipsum пасажи, популярен е и в наши дни във софтуер за печатни издания като Aldus PageMaker, който включва различни версии на Lorem Ipsum. Català Lorem Ipsum és un text de farciment usat per la indústria de la tipografia i la impremta. Lorem Ipsum ha estat el text estàndard de la indústria des de l’any 1500, quan un impressor desconegut va fer servir una galerada de text i la va mesclar per crear un llibre de mostres tipogràfiques. No només ha sobreviscut cinc segles, sinó que ha fet el salt cap a la creació de tipus de lletra electrònics, romanent essencialment sense canvis. Es va popularitzar l’any 1960 amb el llançament de fulls Letraset que contenien passatges de Lorem Ipsum, i més recentment amb programari d’autoedició com Aldus Pagemaker que inclou versions de Lorem Ipsum. Hrvatski Lorem Ipsum je jednostavno probni tekst koji se koristi u tiskarskoj i slovoslagarskoj industriji. Lorem Ipsum postoji kao industrijski standard još od 16-og stoljeća, kada je nepoznati tiskar uzeo tiskarsku galiju slova i posložio ih da bi napravio knjigu s uzorkom tiska. Taj je tekst ne samo preživio pet stoljeća, već se i vinuo u svijet elektronskog slovoslagarstva, ostajući u suštini nepromijenjen. Postao je popularan tijekom 1960-ih s pojavom Letraset listova s odlomcima Lorem Ipsum-a, a u skorije vrijeme sa software-om za stolno izdavaštvo kao što je Aldus PageMaker koji također sadrži varijante Lorem Ipsum-a. Česky Lorem Ipsum je demonstrativní výplňový text používaný v tiskařském a knihařském průmyslu. Lorem Ipsum je považováno za standard v této oblasti už od začátku 16. století, kdy dnes neznámý tiskař vzal kusy textu a na jejich základě vytvořil speciální vzorovou knihu. Jeho odkaz nevydržel pouze pět století, on přežil i nástup elektronické sazby v podstatě beze změny. Nejvíce popularizováno bylo Lorem Ipsum v šedesátých letech 20. století, kdy byly vydávány speciální vzorníky s jeho pasážemi a později pak díky počítačovým DTP programům jako Aldus PageMaker. Româna Lorem Ipsum este pur şi simplu o machetă pentru text a industriei tipografice. Lorem Ipsum a fost macheta standard a industriei încă din secolul al XVI-lea, când un tipograf anonim a luat o planşetă de litere şi le-a amestecat pentru a crea o carte demonstrativă pentru literele respective. Nu doar că a supravieţuit timp de cinci secole, dar şi a facut saltul în tipografia electronică practic neschimbată. A fost popularizată în anii ’60 odată cu ieşirea colilor Letraset care conţineau pasaje Lorem Ipsum, iar mai recent, prin programele de publicare pentru calculator, ca Aldus PageMaker care includeau versiuni de Lorem Ipsum. Српски Lorem Ipsum је једноставно модел текста који се користи у штампарској и словослагачкој индустрији. Lorem ipsum је био стандард за модел текста још од 1500. године, када је непознати штампар узео кутију са словима и сложио их како би направио узорак књиге. Не само што је овај модел опстао пет векова, него је чак почео да се користи и у електронским медијима, непроменивши се. Популаризован је шездесетих година двадесетог века заједно са листовима летерсета који су садржали Lorem Ipsum пасусе, а данас са софтверским пакетом за прелом као што је Aldus PageMaker који је садржао Lorem Ipsum верзије. ================================================ FILE: test/_pages/markup-grid.md ================================================ --- title: Markup (grid view) layout: tag permalink: /tags/markup-grid/ taxonomy: markup entries_layout: grid --- Sample post listing for the tag `markup`. ================================================ FILE: test/_pages/markup.md ================================================ --- title: Markup layout: tag permalink: /tags/markup/ taxonomy: markup --- Sample post listing for the tag `markup`. ================================================ FILE: test/_pages/page-a.md ================================================ --- title: "Page A" permalink: /page-a/ date: 2011-06-23T18:38:52+00:00 --- Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. ================================================ FILE: test/_pages/page-archive-grid.html ================================================ --- layout: archive title: "Page Archive" permalink: /page-archive-grid/ entries_layout: grid author_profile: false --- {% assign entries_layout = page.entries_layout | default: 'list' %}
{% for post in site.pages %} {% include archive-single.html type=entries_layout %} {% endfor %}
================================================ FILE: test/_pages/page-archive.html ================================================ --- layout: archive title: "Page Archive" permalink: /page-archive/ author_profile: false --- {% for post in site.pages %} {% include archive-single.html %} {% endfor %} ================================================ FILE: test/_pages/page-b.md ================================================ --- title: "Page B" permalink: /page-b/ date: 2011-06-23T18:39:14+00:00 --- (lorem ipsum) ================================================ FILE: test/_pages/portfolio-archive.md ================================================ --- title: Portfolio layout: collection permalink: /portfolio/ collection: portfolio entries_layout: grid classes: wide --- Sample document listing for the collection `_portfolio`. ================================================ FILE: test/_pages/post-archive-feature-rows.html ================================================ --- layout: archive title: "Post Archive with Feature Rows" permalink: /post-archive-feature-rows/ author_profile: true feature_row: - image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." feature_row2: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Left Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Right Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row4: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Center Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" --- {% for post in site.posts limit: 5 %} {% include archive-single.html %} {% endfor %} {% include feature_row id="intro" type="center" %} {% include feature_row %} {% include feature_row id="feature_row2" type="left" %} {% include feature_row id="feature_row3" type="right" %} {% include feature_row id="feature_row4" type="center" %} ================================================ FILE: test/_pages/recipes-archive.md ================================================ --- layout: collection title: "Recipes" collection: recipes permalink: /recipes-archive/ author_profile: false --- Sample document listing for the collection `_recipes`. ================================================ FILE: test/_pages/sample-page.md ================================================ --- title: "Sample Page" permalink: /sample-page/ date: 2016-02-24T03:02:20+00:00 --- This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this: > Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi'a coladas. (And gettin' caught in the rain.) ...or something like this: > The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community. You should probably delete this page and create new pages for your content. Have fun! ================================================ FILE: test/_pages/search.md ================================================ --- title: Search layout: search permalink: /search/ --- ================================================ FILE: test/_pages/sitemap.md ================================================ --- layout: archive title: "Sitemap" permalink: /sitemap/ author_profile: false --- A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ '/sitemap.xml' | relative_url }}) available for digesting as well.

Pages

{% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Posts

{% for post in site.posts %} {% include archive-single.html %} {% endfor %} {% capture written_label %}'None'{% endcapture %} {% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == "posts" %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %} ================================================ FILE: test/_pages/splash-page.md ================================================ --- title: "Splash Page" layout: splash permalink: /splash-page/ date: 2016-03-23T11:48:41-04:00 header: overlay_color: "#000" overlay_filter: "0.5" overlay_image: /assets/images/unsplash-image-1.jpg actions: - label: "Learn More" url: "/terms/" caption: "Photo credit: [**Unsplash**](https://unsplash.com)" excerpt: "Bacon ipsum dolor sit amet salami ham hock ham, hamburger corned beef short ribs kielbasa biltong t-bone drumstick tri-tip tail sirloin pork chop." intro: - excerpt: 'Nullam suscipit et nam, tellus velit pellentesque at malesuada, enim eaque. Quis nulla, netus tempor in diam gravida tincidunt, *proin faucibus* voluptate felis id sollicitudin. Centered with `type="center"`' feature_row: - image_path: assets/images/unsplash-gallery-image-1-th.jpg image_caption: "Image courtesy of [Unsplash](https://unsplash.com/)" alt: "placeholder image 1" title: "Placeholder 1" excerpt: "This is some sample content that goes here with **Markdown** formatting." - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder 2" excerpt: "This is some sample content that goes here with **Markdown** formatting." url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" - image_path: /assets/images/unsplash-gallery-image-3-th.jpg title: "Placeholder 3" excerpt: "This is some sample content that goes here with **Markdown** formatting." feature_row2: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Left Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Right Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" feature_row4: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Placeholder Image Center Aligned" excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`' url: "#test-link" btn_label: "Read More" btn_class: "btn--primary" --- {% include feature_row id="intro" type="center" %} {% include feature_row %} {% include feature_row id="feature_row2" type="left" %} {% include feature_row id="feature_row3" type="right" %} {% include feature_row id="feature_row4" type="center" %} ================================================ FILE: test/_pages/tag-archive-grid.md ================================================ --- title: "Posts by Tag (grid view)" permalink: /tags-grid/ layout: tags entries_layout: grid author_profile: true --- ================================================ FILE: test/_pages/tag-archive.md ================================================ --- title: "Posts by Tag" permalink: /tags/ layout: tags author_profile: true --- ================================================ FILE: test/_pages/terms.md ================================================ --- permalink: /terms/ title: "Terms and Privacy Policy" last_modified_at: 2016-06-06 toc: true --- ## Privacy Policy The privacy of my visitors is extremely important. This Privacy Policy outlines the types of personal information that is received and collected and how it is used. First and foremost, I will never share your email address or any other personal information to anyone without your direct consent. ### Log Files Like many other websites, this site uses log files to help learn about when, from where, and how often traffic flows to this site. The information in these log files include: * Internet Protocol addresses (IP) * Types of browser * Internet Service Provider (ISP) * Date and time stamp * Referring and exit pages * Number of clicks All of this information is not linked to anything that is personally identifiable. ### Cookies and Web Beacons When you visit this site "convenience" cookies are stored on your computer when you submit a comment to help you log in faster to [Disqus](http://disqus.com) the next time you leave a comment. Third-party advertisers may also place and read cookies on your browser and/or use web beacons to collect information. This site has no access or control over these cookies. You should review the respective privacy policies on any and all third-party ad servers for more information regarding their practices and how to opt-out. If you wish to disable cookies, you may do so through your web browser options. Instructions for doing so can be found on the specific web browsers' websites. #### Google Analytics Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read [Google Analytics Privacy Policy](http://www.google.com/analytics/learn/privacy.html). #### Google Adsense Google Adsense, a third party affiliate marketing network, uses cookies to help make sure I get a commission when you buy a product after clicking on a link or ad banner that takes you to the site of one of their merchants. You can read [Google Adsense Privacy Policy](http://support.google.com/adsense/bin/answer.py?hl=en&answer=48182). ## Disclosure Policy I make money on this website through affiliate programs. If you click an affiliate link or ad banner and buy the product, you help support this website because I'll get a percentage of that sale. Currently I'm an affiliate for Amazon and Google Adsense. What this means for you: * I became an affiliate to earn revenue towards the costs of running and maintaining this website. Where I have direct control over which ads are served on this website I offer only products that are directly related to the topic of this website and products that a reader/subscriber would have a genuine interest in or need of. * I do not and will not recommend a product just for the sake of making money. * I do not let the compensation I receive influence the content, topics, posts, or opinions expressed on this website. * I respect and value my readers too much to write anything other than my own genuine and objective opinions and advice. Just like this website, my Disclosure Policy is a work in progress. As the revenue streams evolve, so will this page. ================================================ FILE: test/_pages/year-archive-grid.md ================================================ --- title: "Posts by Year (grid view)" permalink: /year-archive-grid/ layout: posts entries_layout: grid author_profile: true --- ================================================ FILE: test/_pages/year-archive.md ================================================ --- title: "Posts by Year" permalink: /year-archive/ layout: posts author_profile: true --- ================================================ FILE: test/_pets/lhasa-apso.md ================================================ --- title: "Lhasa Apso" excerpt: "The Lhasa Apso is a non-sporting dog breed originating in Tibet." --- > The Lhasa Apso (/ˈlɑːsə ˈæpsoʊ/ lah-sə ap-soh) is a non-sporting dog breed originating in Tibet. It was bred as an interior sentinel in the Buddhist monasteries, to alert the monks to any intruders who entered. Lhasa is the capital city of Tibet, and apso is a word in the Tibetan language meaning "bearded", so, Lhasa Apso simply means "long-haired Lhasa dog". There are, however, some who claim that the word "apso" is a form of the Tibetan word "rapso", meaning "goat-like", which would make the equivalent translation "wooly Lhasa dog". > From Wikipedia, the free encyclopedia ================================================ FILE: test/_pets/tabby.md ================================================ --- title: "Tabby" excerpt: "A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually with a mark resembling an 'M' on its forehead." --- > A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually together with a mark resembling an 'M' on its forehead. Tabbies are sometimes erroneously assumed to be a cat breed. In fact, the tabby pattern is found in many breeds, as well as among the general mixed-breed population. The tabby pattern is a naturally occurring feature that may be related to the coloration of the domestic cat's direct ancestor, the African wildcat, which (along with the European wildcat and Asiatic wildcat) has a similar coloration. > From Wikipedia, the free encyclopedia ================================================ FILE: test/_portfolio/baz-boom-identity.md ================================================ --- title: "Baz Boom Identity" excerpt: "Baz Boom design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-1.jpg teaser: assets/images/unsplash-gallery-image-1-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: test/_portfolio/fizz-bang-identity.md ================================================ --- title: "Fizz Bang Identity" excerpt: "Fizz Bang design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-2.jpg teaser: assets/images/unsplash-gallery-image-2-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: test/_portfolio/foo-bar-website.md ================================================ --- title: "Foo Bar Identity" excerpt: "Foo Bar design system including logo mark, website design, and branding applications." header: image: /assets/images/foo-bar-identity.jpg teaser: /assets/images/foo-bar-identity-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: test/_portfolio/ginger-gulp-identity.md ================================================ --- title: "Ginger Gulp Identity" excerpt: "Ginger Gulp design system including logo mark, website design, and branding applications." header: image: /assets/images/unsplash-gallery-image-3.jpg teaser: assets/images/unsplash-gallery-image-3-th.jpg sidebar: - title: "Role" image: http://placehold.it/350x250 image_alt: "logo" text: "Designer, Front-End Developer" - title: "Responsibilities" text: "Reuters try PR stupid commenters should isn't a business model" gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" --- Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman. {% include gallery caption="This is a sample gallery to go along with this case study." %} hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight. ================================================ FILE: test/_posts/2009-05-15-edge-case-nested-and-mixed-lists.md ================================================ --- title: "Edge Case: Nested and Mixed Lists" categories: - Edge Case tags: - content - css - edge case - lists - markup --- Nested and mixed lists are an interesting beast. It's a corner case to make sure that * Lists within lists do not break the ordered list numbering order * Your list styles go deep enough. ### Ordered -- Unordered -- Ordered 1. ordered item 2. ordered item * **unordered** * **unordered** 1. ordered item 2. ordered item 3. ordered item 4. ordered item ### Ordered -- Unordered -- Unordered 1. ordered item 2. ordered item * **unordered** * **unordered** * unordered item * unordered item 3. ordered item 4. ordered item ### Unordered -- Ordered -- Unordered * unordered item * unordered item 1. ordered 2. ordered * unordered item * unordered item * unordered item * unordered item ### Unordered -- Unordered -- Ordered * unordered item * unordered item * unordered * unordered 1. **ordered item** 2. **ordered item** * unordered item * unordered item ### Task Lists - [x] Finish my changes - [ ] Push my commits to GitHub - [ ] Open a pull request - [ ] Follow discussions - [x] Push new commits ================================================ FILE: test/_posts/2009-06-01-edge-case-many-tags.md ================================================ --- title: "Edge Case: Many Tags" categories: - Edge Case tags: - 8BIT - alignment - Articles - captions - categories - chat - comments - content - css - dowork - edge case - embeds - excerpt - Fail - featured image - FTW - Fun - gallery - html - image - Jekyll - layout - link - Love - markup - Mothership - Must Read - Nailed It - Pictures - Post Formats - quote - standard - Success - Swagger - Tags - template - title - twitter - Unseen - video - YouTube - U:R:COOL - C# --- This post has many tags. ================================================ FILE: test/_posts/2009-07-02-edge-case-many-categories.md ================================================ --- title: "Edge Case: Many Categories" categories: - aciform - antiquarianism - arrangement - asmodeus - broder - buying - championship - chastening - disinclination - disinfection - dispatch - echappee - enphagy tags: - categories - edge case --- This post has many categories. ================================================ FILE: test/_posts/2009-08-06-edge-case-no-body-content.md ================================================ --- title: "Edge Case: No Body Content" categories: - Edge Case tags: - content - edge case - layout --- ================================================ FILE: test/_posts/2009-09-05-edge-case-no-yaml-title.md ================================================ --- categories: - Edge Case tags: - edge case - layout - title --- This post has no title specified in the YAML Front Matter. Jekyll should auto-generate a title from the filename. ================================================ FILE: test/_posts/2009-10-05-edge-case-multiline-excerpt.md ================================================ --- title: "Edge Case: Post with multiline excerpt" --- Et ex ullamco duis don't combine these words quis laborum sunt sint. Nisi et Lorem reprehenderit cupidatat. Aliqua fugiat aliquip officia culpa elit. Adipisicing do eu duis aute et aute amet anim ut cillum aliqua. Aliqua adipisicing occaecat et ullamco fugiat. ================================================ FILE: test/_posts/2009-10-05-edge-case-title-should-not-overflow-the-content-area.md ================================================ --- title: "Antidisestablishmentarianism" categories: - Edge Case tags: - content - css - edge case - html - layout - title --- ## Title should not overflow the content area A few things to check for: * Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality. * Check the browser window / tab title. * If you are a theme developer, check that this text does not break anything. The following CSS properties will help you support non-breaking text. ```css -ms-word-wrap: break-word; word-wrap: break-word; ``` ================================================ FILE: test/_posts/2009-10-05-edge-case-very-long-title.md ================================================ --- title: "Suspicio? Bene ... tunc ibimus? Quis uh ... CONEXUS locus his diebus? Quisque semper aliquid videtur, in volutpat mauris. Nolo enim dicere. Vobis neque ab aliis. Ego feci memetipsum explicans. Gus mortuus est. Lorem opus habeo. Jackson Isai? Tu quoque ... A te quidem a ante. Vos scitis quod blinking res Ive 'been vocans super vos? Et conteram illud, et conteram hoc. Maledicant druggie excors. Iam hoc tu facere conatus sum ad te in omni tempore? Ludum mutavit. Verbum est ex. Et ... sunt occid" categories: - Edge Case tags: - content - css - edge case - html - layout - title --- Check for long titles and how they might break a template. ================================================ FILE: test/_posts/2010-01-07-post-modified.md ================================================ --- title: "Post: Modified Date" last_modified_at: 2016-03-09T16:20:02-05:00 categories: - Post Formats tags: - Post Formats - readability - standard --- This post has been updated and should show a modified date if used in a layout. All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end. ================================================ FILE: test/_posts/2010-01-07-post-standard.md ================================================ --- title: "Post: Standard" excerpt_separator: "" categories: - Post Formats tags: - Post Formats - readability - standard --- All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end. Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. This post has a manual excerpt `` set after the second paragraph. The following YAML Front Matter has also be applied: ```yaml excerpt_separator: "" ``` If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: test/_posts/2010-01-08-post-chat.md ================================================ --- title: "Post: Chat" categories: - Post Formats tags: - chat - Post Formats --- Abbott: Strange as it may seem, they give ball players nowadays very peculiar names. Costello: Funny names? Abbott: Nicknames, nicknames. Now, on the St. Louis team we have Who's on first, What's on second, I Don't Know is on third-- Costello: That's what I want to find out. I want you to tell me the names of the fellows on the St. Louis team. Abbott: I'm telling you. Who's on first, What's on second, I Don't Know is on third-- Costello: You know the fellows' names? Abbott: Yes. Costello: Well, then who's playing first? Abbott: Yes. Costello: I mean the fellow's name on first base. Abbott: Who. Costello: The fellow playin' first base. Abbott: Who. Costello: The guy on first base. Abbott: Who is on first. Costello: Well, what are you askin' me for? Abbott: I'm not asking you--I'm telling you. Who is on first. Costello: I'm asking you--who's on first? Abbott: That's the man's name. Costello: That's who's name? Abbott: Yes. Costello: When you pay off the first baseman every month, who gets the money? Abbott: Every dollar of it. And why not, the man's entitled to it. Costello: Who is? Abbott: Yes. Costello: So who gets it? Abbott: Why shouldn't he? Sometimes his wife comes down and collects it. Costello: Who's wife? Abbott: Yes. After all, the man earns it. Costello: Who does? Abbott: Absolutely. Costello: Well, all I'm trying to find out is what's the guy's name on first base? Abbott: Oh, no, no. What is on second base. Costello: I'm not asking you who's on second. Abbott: Who's on first! Costello: St. Louis has a good outfield? Abbott: Oh, absolutely. Costello: The left fielder's name? Abbott: Why. Costello: I don't know, I just thought I'd ask. Abbott: Well, I just thought I'd tell you. Costello: Then tell me who's playing left field? Abbott: Who's playing first. Costello: Stay out of the infield! The left fielder's name? Abbott: Why. Costello: Because. Abbott: Oh, he's center field. Costello: Wait a minute. You got a pitcher on this team? Abbott: Wouldn't this be a fine team without a pitcher? Costello: Tell me the pitcher's name. Abbott: Tomorrow. Costello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who? Abbott: Now, that's he first thing you've said right. Costello: I DON'T EVEN KNOW WHAT I'M TALKING ABOUT! Abbott: Don't get excited. Take it easy. Costello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don't know. I don't know throws it back to tomorrow--a triple play. Abbott: Yeah, it could be. Costello: Another guy gets up and it's a long ball to center. Abbott: Because. Costello: Why? I don't know. And I don't care. Abbott: What was that? Costello: I said, I DON'T CARE! Abbott: Oh, that's our shortstop! ================================================ FILE: test/_posts/2010-02-05-post-notice.md ================================================ --- title: "Post: Notice" categories: - Post Formats tags: - Post Formats - notice --- A notice displays information that explains nearby content. Often used to call attention to a particular detail. When using Kramdown `{: .notice}` can be added after a sentence to assign the `.notice` to the `

` element. **Changes in Service:** We just updated our [privacy policy](#) here to better service our customers. We recommend reviewing the changes. {: .notice} **Primary Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. [Praesent libero](#). Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--primary}
**Primary Notice with code block:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. [Praesent libero](#). Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. ```html Some body. ```
**Info Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing elit](#). Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--info} **Warning Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. [Integer nec odio](#). Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--warning} **Danger Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing](#) elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. {: .notice--danger} **Success Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at [nibh elementum](#) imperdiet. {: .notice--success} Want to wrap several paragraphs or other elements in a notice? Using Liquid to capture the content and then filter it with `markdownify` is a good way to go. ```html {% raw %}{% capture notice-2 %} #### New Site Features * You can now have cover images on blog pages * Drafts will now auto-save while writing {% endcapture %}{% endraw %}
{% raw %}{{ notice-2 | markdownify }}{% endraw %}
``` {% capture notice-2 %} #### New Site Features * You can now have cover images on blog pages * Drafts will now auto-save while writing {% endcapture %}
{{ notice-2 | markdownify }}
Or you could skip the capture and stick with straight HTML. ```html

Message

A basic message.

```

Message

A basic message.

================================================ FILE: test/_posts/2010-02-05-post-quote.md ================================================ --- title: "Post: Quote" categories: - Post Formats tags: - Post Formats - quote --- > Only one thing is impossible for God: To find any sense in any copyright law on the planet. > Mark Twain ================================================ FILE: test/_posts/2010-03-07-post-link.md ================================================ --- title: "Post: Link" categories: - Post Formats tags: - link - Post Formats link: https://github.com --- This theme supports **link posts**, made famous by John Gruber. To use, just add `link: http://url-you-want-linked` to the post's YAML front matter and you're done. > And this is how a quote looks. Some [link](#) can also be shown. ================================================ FILE: test/_posts/2010-06-02-post-video-youtube.md ================================================ --- title: "Post: Video (YouTube)" categories: - Post Formats tags: - Post Formats --- YouTube video embed below. ================================================ FILE: test/_posts/2010-08-05-post-header-image-og-override.md ================================================ --- title: "Post: Header Image with OpenGraph Override" header: image: /assets/images/page-header-image.png og_image: /assets/images/page-header-og-image.png categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a header image with an OpenGraph override. ```yaml header: image: /assets/images/page-header-image.png og_image: /assets/images/page-header-og-image.png ``` ================================================ FILE: test/_posts/2010-08-05-post-header-overlay-image-og-override.md ================================================ --- title: "Post: Overlay Image with OpenGraph Override" header: overlay_image: /assets/images/unsplash-image-1.jpg og_image: /assets/images/page-header-og-image.png caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Learn More" url: "https://unsplash.com" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a header image with an OpenGraph override. ```yaml header: overlay_image: /assets/images/unsplash-image-1.jpg og_image: /assets/images/page-header-og-image.png caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Learn More" url: "https://unsplash.com" ``` ================================================ FILE: test/_posts/2010-08-05-post-image-linked.md ================================================ --- title: "Post: Image (with Link)" categories: - Post Formats tags: - image - Post Formats --- [![foo](https://live.staticflickr.com/8361/8400335147_5fabaa504c_o.jpg)](https://flic.kr/p/dNiUYB) ================================================ FILE: test/_posts/2010-08-05-post-image-standard.md ================================================ --- title: "Post: Image (Standard)" categories: - Post Formats tags: - image - Post Formats --- The preferred way of using images is placing them in the `/assets/images/` directory and referencing them with an absolute path. Prepending the filename with `{% raw %}{{ site.url }}{{ site.baseurl }}/assets/images/{% endraw %}` will make sure your images display properly in feeds and such. Standard image with no width modifier classes applied. **HTML:** ```html {% raw %}{% endraw %} ``` **or Kramdown:** ```markdown {% raw %}![alt]({{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg){% endraw %} ``` ![Unsplash image 9]({{ site.url }}{{ site.baseurl }}/assets/images/unsplash-image-9.jpg) Image that fills page content container by adding the `.full` class with: **HTML:** ```html {% raw %}{% endraw %} ``` **or Kramdown:** ```markdown {% raw %}![alt]({{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg) {: .full}{% endraw %} ``` ![Unsplash image 10]({{ site.url }}{{ site.baseurl }}/assets/images/unsplash-image-10.jpg) {: .full} ================================================ FILE: test/_posts/2010-08-05-post-teaser-image-og-override.md ================================================ --- title: "Post: Teaser Image with OpenGraph Override" header: teaser: /assets/images/page-header-teaser.png og_image: /assets/images/page-header-og-image.png categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2017-10-26T15:12:19-04:00 --- This post has a teaser image with an OpenGraph override. ```yaml header: teaser: /assets/images/page-header-teaser.png og_image: /assets/images/page-header-og-image.png ``` ================================================ FILE: test/_posts/2010-08-06-post-image-linked-caption.md ================================================ --- title: "Post: Image (Linked with Caption)" categories: - Post Formats tags: - image - Post Formats --- {% capture fig_img %} [![Foo](https://images.unsplash.com/photo-1541943869728-4bd4f450c8f5?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&fit=max&ixid=eyJhcHBfaWQiOjF9)](https://unsplash.com/) {% endcapture %} {% capture fig_caption %} Stairs? Were we're going we don't need no stairs. {% endcapture %}
{{ fig_img | markdownify | remove: "

" | remove: "

" }}
{{ fig_caption | markdownify | remove: "

" | remove: "

" }}
================================================ FILE: test/_posts/2010-08-07-post-image-caption.md ================================================ --- title: "Post: Image (Caption)" categories: - Post Formats tags: - image - Post Formats --- {% capture fig_img %} ![Foo]({{ '/assets/images/unsplash-gallery-image-3.jpg' | relative_url }}) {% endcapture %}
{{ fig_img | markdownify | remove: "

" | remove: "

" }}
Photo from Unsplash.
================================================ FILE: test/_posts/2010-09-09-post-gallery.md ================================================ --- title: "Post: Gallery" categories: - Post Formats tags: - gallery - Post Formats - tiled gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 4" title: "Image 4 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 5" title: "Image 5 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 6" title: "Image 6 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 7" title: "Image 7 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 8" title: "Image 8 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 9" title: "Image 9 title caption" - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 10" title: "Image 10 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 11" title: "Image 11 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 12" title: "Image 12 title caption" gallery2: - url: https://flic.kr/p/8a6Ven image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg alt: "Black and grays with a hint of green" - url: https://flic.kr/p/8a738X image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg alt: "Made for open text placement" - url: https://flic.kr/p/8a6VXP image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg alt: "Fog in the trees" gallery3: - image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" - image_path: /assets/images/unsplash-gallery-image-4-th.jpg alt: "placeholder image 4" --- These are gallery tests for image wrapped in `
` elements. To place a gallery add the necessary YAML Front Matter: ```yaml gallery: - url: /assets/images/unsplash-gallery-image-1.jpg image_path: /assets/images/unsplash-gallery-image-1-th.jpg alt: "placeholder image 1" title: "Image 1 title caption" - url: /assets/images/unsplash-gallery-image-2.jpg image_path: /assets/images/unsplash-gallery-image-2-th.jpg alt: "placeholder image 2" title: "Image 2 title caption" - url: /assets/images/unsplash-gallery-image-3.jpg image_path: /assets/images/unsplash-gallery-image-3-th.jpg alt: "placeholder image 3" title: "Image 3 title caption" - url: /assets/images/unsplash-gallery-image-4.jpg image_path: /assets/images/unsplash-gallery-image-4-th.jpg alt: "placeholder image 4" title: "Image 4 title caption" ``` And then drop-in the gallery include --- gallery `caption` is optional. ```liquid {% raw %}{% include gallery caption="This is a sample gallery with **Markdown support**." %}{% endraw %} ``` {% include gallery caption="This is a sample gallery with **Markdown support**." %} This is some text after the gallery just to make sure that everything aligns properly. Here comes another gallery, this time set the `id` to match 2nd gallery hash in YAML Front Matter. ```yaml gallery2: - url: https://flic.kr/p/8a6Ven image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg alt: "Black and grays with a hint of green" - url: https://flic.kr/p/8a738X image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg alt: "Made for open text placement" - url: https://flic.kr/p/8a6VXP image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg alt: "Fog in the trees" ``` And place it like so: ```liquid {% raw %}{% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %}{% endraw %} ``` {% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %} And for giggles one more gallery just to make sure this works. To fill page content container add `class="full"`. {% include gallery id="gallery3" class="full" caption="This is a third gallery example with two images and fills the entire content container." %} Gallery column layout can be overrided by setting a `layout`. ```liquid {% raw %}{% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %}{% endraw %} ``` {% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %} ================================================ FILE: test/_posts/2010-09-10-post-twitter-embeds.md ================================================ --- title: "Post: Twitter Embed" categories: - Media tags: - content - embeds - media - twitter --- This post tests Twitter Embeds. ================================================ FILE: test/_posts/2010-10-25-post-future-date.md ================================================ --- title: "Post: Future Date" date: 9999-12-31 categories: - Post --- This post lives in the future and is dated {{ page.date | date: "%c" }}. When building Jekyll with the `--future` flag it should appear. ================================================ FILE: test/_posts/2012-01-02-layout-comments-disabled.md ================================================ --- title: "Layout: Comments Disabled" comments: false categories: - Layout - Uncategorized tags: - comments - layout --- This post has its comments disabled. There should be no comment form. ================================================ FILE: test/_posts/2012-01-02-layout-comments.md ================================================ --- title: "Layout: Comments Enabled" comments: true categories: - Layout - Uncategorized tags: - comments - layout --- This post should display comments. ================================================ FILE: test/_posts/2012-01-02-layout-post-date-disabled.md ================================================ --- title: "Layout: Post Date Disabled" show_date: false tags: - post date --- This post has the date disabled. The date this post was published should not be showing if `show_date: false` is set in `_config.yml` or in this post's YAML Front Matter. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: test/_posts/2012-01-02-layout-post-date.md ================================================ --- title: "Layout: Post Date Enabled" show_date: true tags: - post date --- This post has post date enabled. The date the post was published should show if `show_date: true` is added to it's YAML Front Matter or as a default in `_config.yml`. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: test/_posts/2012-01-02-layout-read-time-disabled.md ================================================ --- title: "Layout: Read Time Disabled" read_time: false tags: - read time --- This post has reading time disabled. The estimated time that it takes to read this post should not be showing if `read_time: false` is set in `_config.yml` or in this post's YAML Front Matter. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: test/_posts/2012-01-02-layout-read-time.md ================================================ --- title: "Layout: Read Time Enabled" read_time: true tags: - read time --- This post has reading time enabled. The estimated time that it takes to read this post should show if also enabled in `_config.yml` with `read_time: true`. If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance. ================================================ FILE: test/_posts/2012-01-02-layout-related-posts-disabled.md ================================================ --- title: "Layout: Related Posts Disabled" related: false categories: - Layout - Uncategorized tags: - related posts - layout --- This post has related posts disabled. Related post links should not appear. ================================================ FILE: test/_posts/2012-01-02-layout-related-posts.md ================================================ --- title: "Layout: Related Posts Enabled" related: true categories: - Layout - Uncategorized tags: - related posts - layout --- This post has related posts enabled. ================================================ FILE: test/_posts/2012-01-02-layout-sharing-disabled.md ================================================ --- title: "Layout: Social Sharing Links Disabled" share: false categories: - Layout - Uncategorized tags: - social - layout --- This post has social sharing disabled. Social sharing links should not appear. ================================================ FILE: test/_posts/2012-01-02-layout-sharing.md ================================================ --- title: "Layout: Social Sharing Links Enabled" share: true categories: - Layout - Uncategorized tags: - social - layout --- This post should display social sharing links. ================================================ FILE: test/_posts/2012-01-03-layout-read-time-comments-sharing-related-posts-disabled.md ================================================ --- title: "Layout: Reading Time, Comments, Social Sharing Links, and Related Posts Disabled" read_time: false comments: false share: false related: false categories: - Layout - Uncategorized tags: - related posts - social - comments - layout --- This post has reading time, comments, social sharing links, and related posts disabled. Reading time, comments, social sharing and related post links should not appear. ================================================ FILE: test/_posts/2012-01-03-layout-table-of-contents-include-post.md ================================================ --- title: "Layout: Post with Nested Table of Contents via Helper" tags: - table of contents --- Tests table of contents with multiple levels to verify indentation is readible via helper include (deprecated). ``` {% raw %}{% include toc %}{% endraw %} ``` {% include toc %} # Enim laboris id ea elit elit deserunt Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis. Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet. ## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur. Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim. Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit. ### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum. #### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse. #### 2.1.2 Nisi non nisi ullamco ipsum cillum Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint. #### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute. ##### 2.1.1.1 Ut aute quis ipsum fugiat dolor Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate. ##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit. ###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia. ###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit. ###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor. ###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat. ##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt. ##### 2.1.1.4 Magna ipsum nisi velit anim Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud. ###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor. ###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt. #### 2.1.4 Laboris exercitation nisi tempor dolore Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat. ### 2.2 Officia irure duis et est sunt Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim. ## 3 Laborum eu magna proident proident tempor Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint. ### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing. ### 3.2 Do exercitation ex elit incididunt sit cupidatat Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit. ### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non. ### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident. ### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu. #### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute. ##### 3.5.1.1 Nisi anim commodo consequat quis amet Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt. ###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui. ### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip. ## 4 Laboris aute consequat id eu et Lorem amet Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia. ## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea. ## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor. ================================================ FILE: test/_posts/2012-01-03-layout-table-of-contents-indent-post.md ================================================ --- title: "Layout: Post with Nested Table of Contents" tags: - table of contents toc: true --- Tests table of contents with multiple levels to verify indentation is readible. # Enim laboris id ea elit elit deserunt Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis. Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet. ## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur. Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim. Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit. ### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum. #### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse. #### 2.1.2 Nisi non nisi ullamco ipsum cillum Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint. #### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute. ##### 2.1.1.1 Ut aute quis ipsum fugiat dolor Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate. ##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit. ###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia. ###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit. ###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor. ###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat. ##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt. ##### 2.1.1.4 Magna ipsum nisi velit anim Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud. ###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor. ###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt. #### 2.1.4 Laboris exercitation nisi tempor dolore Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat. ### 2.2 Officia irure duis et est sunt Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim. ## 3 Laborum eu magna proident proident tempor Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint. ### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing. ### 3.2 Do exercitation ex elit incididunt sit cupidatat Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit. ### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non. ### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident. ### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu. #### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute. ##### 3.5.1.1 Nisi anim commodo consequat quis amet Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt. ###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui. ### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip. ## 4 Laboris aute consequat id eu et Lorem amet Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia. ## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea. ## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor. ================================================ FILE: test/_posts/2012-01-03-layout-table-of-contents-post.md ================================================ --- title: "Layout: Post with Table of Contents" header: image: assets/images/unsplash-image-9.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" tags: - table of contents toc: true toc_label: "Unique Title" toc_icon: "heart" --- Enable table of contents on post or page by adding `toc: true` to its YAML Front Matter. The title and icon can also be changed with: ```yaml --- toc: true toc_label: "Unique Title" toc_icon: "heart" # corresponding Font Awesome icon name (without fa prefix) --- ``` ## HTML Elements Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs. ## Body text Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam. ![Smithsonian Image]({{ site.url }}{{ site.baseurl }}/assets/images/3953273590_704e3899d5_m.jpg) {: .image-right} *This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. ### Blockquotes > Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. ## List Types ### Ordered Lists 1. Item one 1. sub item one 2. sub item two 3. sub item three 2. Item two ### Unordered Lists * Item one * Item two * Item three ## Tables | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |---- | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |===== | Foot1 | Foot2 | Foot3 {: rules="groups"} ## Code Snippets ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ================================================ FILE: test/_posts/2012-01-03-layout-table-of-contents-sticky.md ================================================ --- title: "Layout: Post with Sticky Table of Contents" tags: - table of contents toc: true toc_sticky: true --- "Stick" table of contents to the top of a page by adding `toc_sticky: true` to its YAML Front Matter. ```yaml --- toc: true toc_sticky: true --- ``` ## HTML Elements Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs. ## Body text Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam. ![Smithsonian Image]({{ site.url }}{{ site.baseurl }}/assets/images/3953273590_704e3899d5_m.jpg) {: .image-right} *This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. ### Blockquotes > Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. ## List Types ### Ordered Lists 1. Item one 1. sub item one 2. sub item two 3. sub item three 2. Item two ### Unordered Lists * Item one * Item two * Item three ## Tables | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |---- | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |===== | Foot1 | Foot2 | Foot3 {: rules="groups"} ## Code Snippets ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` ## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` ## Notices **Watch out!** You can also add notices by appending `{: .notice}` to a paragraph. {: .notice} ================================================ FILE: test/_posts/2012-03-14-layout-code-excerpt-generated.md ================================================ --- title: "Layout: Code Excerpt (Generated)" categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content with inline code, (e.g. `red`. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems. ================================================ FILE: test/_posts/2012-03-14-layout-excerpt-defined.md ================================================ --- title: "Layout: Excerpt (Defined)" excerpt: "This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages." categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content. It should be displayed in place of the user-defined excerpt in archive-index pages. This paragraph should be absent from an archive-index page where `post.excerpt` is shown. ================================================ FILE: test/_posts/2012-03-14-layout-excerpt-generated.md ================================================ --- title: "Layout: Excerpt (Generated)" excerpt_separator: "" categories: - Layout - Uncategorized tags: - content - excerpt - layout --- This is the post content. Archive-index pages should display an auto-generated excerpt of this content. Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems. ================================================ FILE: test/_posts/2012-03-15-layout-author-override.md ================================================ --- title: "Layout: Author Override" author: Billy Rick excerpt: "A post to test author overrides using a data file." --- Sites that may have content authored from various individuals can be accommodated by using [data files](https://jekyllrb.com/docs/datafiles/). To attribute an author to a post or page that is different from the site author specified in `_config.yml`: **Step 1.** Create `_data/authors.yml` and add authors using the following format. Anything variables found under `author` in `_config.yml` can be used (e.g. `name`, `bio`, `avatar`, author `links`, etc.). ```yaml # /_data/authors.yml Billy Rick: name : "Billy Rick" bio : "What do you want, jewels? I am a very extravagant man." avatar : "/assets/images/bio-photo-2.jpg" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:billyrick@rick.com" - label: "Website" icon: "fas fa-fw fa-link" url: "https://thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/extravagantman" Cornelius Fiddlebone: name : "Cornelius Fiddlebone" bio : "I ordered what?" avatar : "/assets/images/bio-photo.jpg" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:cornelius@thewhip.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/rhymeswithsackit" ``` **Step 2.** Assign one of the authors in `authors.yml` to a post or page you wish to override the `site.author` with. Example: To assign `Billy Rick` as an author for a post the following YAML Front Matter would be applied: ```yaml author: Billy Rick ``` ================================================ FILE: test/_posts/2012-03-15-layout-author-sidebar-disabled.md ================================================ --- title: "Layout: Author Sidebar Disabled" excerpt: "A post to test disabling author sidebar." author_profile: false --- This post has the author sidebar disabled. To disable add `author_profile: false` to YAML Front Matter. ================================================ FILE: test/_posts/2012-03-15-layout-header-image-external.md ================================================ --- title: "Layout: Header Image (External URL)" header: image: https://live.staticflickr.com/8084/8396909762_813a2b1829_h.jpg categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Featured image is an external asset and should load. ================================================ FILE: test/_posts/2012-03-15-layout-header-image-horizontal.md ================================================ --- title: "Layout: Header Image (Horizontal)" header: image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests a horizontal header image. ================================================ FILE: test/_posts/2012-03-15-layout-header-image-text-readability.md ================================================ --- title: "Layout: Header Image and Text Readability" header: image: /assets/images/unsplash-image-4.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" tags: - sample post - readability - test --- This is a sample post with a large feature image[^1] up top and tons of text. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. *Ea fashion axe [Marfa cillum aliquip](#). Retro Bushwick keytar cliche.* Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. **[Terry Richardson](#) shabby chic +1**, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. [^1]: Texture image courtesty of [Lovetextures](http://www.lovetextures.com/) ================================================ FILE: test/_posts/2012-03-15-layout-header-image-vertical.md ================================================ --- title: "Layout: Header Image (Vertical)" header: image: /assets/images/unsplash-image-6.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - featured image - image - layout --- This post should display a **header image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests a vertical header image. ================================================ FILE: test/_posts/2012-03-15-layout-header-overlay-color.md ================================================ --- title: "Layout: Header Overlay with Background Fill" header: overlay_color: "#333" categories: - Layout - Uncategorized tags: - edge case - image - layout --- This post should display a **header with a solid background color**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay headers. ================================================ FILE: test/_posts/2012-03-15-layout-header-overlay-image-tagline.md ================================================ --- title: "Layout: Header Image Overlay with Custom Tagline" tagline: "This is a custom tagline content which overrides the *default* page excerpt." header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2020-01-07T13:05:25-05:00 --- This post should display a **header with an overlay image** and **custom tagline**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay header images with custom `page.tagline`. ```yaml tagline: "This is a custom tagline content which overrides the default page excerpt." header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" ``` ================================================ FILE: test/_posts/2012-03-15-layout-header-overlay-image.md ================================================ --- title: "Layout: Header Image Overlay" header: overlay_image: /assets/images/unsplash-image-1.jpg caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "Call to action 1" url: "https://github.com" - label: "Call to action 2" url: "https://mademistakes.com" categories: - Layout - Uncategorized tags: - edge case - image - layout last_modified_at: 2016-05-02T11:39:01-04:00 --- This post should display a **header with an overlay image**, if the theme supports it. Non-square images can provide some unique styling issues. This post tests overlay header images. ## Overlay filter You can use it by specifying the opacity (between 0 and 1) of a black overlay like so: ![transparent black overlay]({{ '/assets/images/mm-header-overlay-black-filter.jpg' | relative_url }}) ```yaml excerpt: "This post should [...]" header: overlay_image: /assets/images/unsplash-image-1.jpg overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "More Info" url: "https://unsplash.com" ``` Or if you want to do more fancy things, go full rgba: ![transparent red overlay]({{ '/assets/images/mm-header-overlay-red-filter.jpg' | relative_url }}) ```yaml excerpt: "This post should [...]" header: overlay_image: /assets/images/unsplash-image-1.jpg overlay_filter: rgba(255, 0, 0, 0.5) caption: "Photo credit: [**Unsplash**](https://unsplash.com)" actions: - label: "More Info" url: "https://unsplash.com" ``` ================================================ FILE: test/_posts/2012-03-15-layout-more-tag.md ================================================ --- title: "Layout: More Tag" excerpt_separator: categories: - Layout - Uncategorized tags: - content - read more - layout --- This content is before the [excerpt separator tag](http://jekyllrb.com/docs/posts/#post-excerpts). Additional content before the more tag. And this content is after the more tag. ================================================ FILE: test/_posts/2012-03-15-layout-sidebar-custom.md ================================================ --- title: "Layout: Sidebar Custom" excerpt: "A post with custom sidebar content." author_profile: false sidebar: - title: "Title" image: http://placehold.it/350x250 image_alt: "image" text: "Some text here." nav: sidebar-sample - title: Another sidebar nav nav: sidebar-sample --- This post has a custom sidebar set in the post's YAML Front Matter. An example of how that YAML could look is: ```yaml sidebar: - title: "Title" image: http://placehold.it/350x250 image_alt: "image" text: "Some text here." - title: "Another Title" text: "More text here." ``` ================================================ FILE: test/_posts/2012-03-15-layout-sidebar-nav-list.md ================================================ --- title: "Layout: Sidebar with Navigation List" excerpt: "A post with a sidebar navigation list." author_profile: false sidebar: title: "Sample Title" nav: sidebar-sample --- This post has a custom navigation list set in the post's YAML Front Matter. ```yaml sidebar: title: "Sample Title" nav: sidebar-sample ``` Along with navigation elements set in `_data/navigation.yml`. ```yaml sidebar-sample: - title: "Parent Page A" children: - title: "Child Page A1" url: / - title: "Child Page A2" url: / - title: "Child Page A3" url: / - title: "Child Page A4" url: / - title: "Parent Page B" children: - title: "Child Page B1" url: / - title: "Child Page B2" url: / - title: "Child Page B3" url: / - title: "Child Page B4" url: / - title: "Child Page B5" url: / - title: "Parent Page C" children: - title: "Child Page C1" url: / - title: "Child Page C2" url: / - title: "Child Page C3" url: / - title: "Child Page C4" url: / - title: "Child Page C5" url: / - title: "Parent Page D" children: - title: "Child Page D1" url: / - title: "Child Page D2" url: / ``` ================================================ FILE: test/_posts/2012-05-22-markup-text-readability-wide-page.md ================================================ --- title: "Wide Single Layout Page" classes: wide excerpt: "A page with `classes: wide` set to expand the main content's width." tags: - sample post - readability - test --- When using `layout: single` add the following front matter to a page or post to widen the main content: ```yaml classes: wide ``` Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. ================================================ FILE: test/_posts/2012-05-22-markup-text-readability.md ================================================ --- title: "Markup: Text Readability Test" excerpt: "A bunch of text to test readability." tags: - sample post - readability - test --- Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag. Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. ## Cupidatat 90's lo-fi authentic try-hard In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. * Sartorial hoodie * Labore viral forage * Tote bag selvage * DIY exercitation et id ugh tumblr church-key Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr. Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis. ## Forage occaecat cardigan qui Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. > Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache. Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard. ## Hoodie Duis Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio. ### Thundercats Ho! Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress. Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic. Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam. ================================================ FILE: test/_posts/2013-01-05-markup-title-with-markup.md ================================================ --- title: "Markup: Title *with* **Markdown**" categories: - Markdown tags: - css - html - title --- Verify that: * The post title renders the word "with" in *italics* and the word "Markdown" in **bold**. * The post title markup should be removed from the browser window / tab. ================================================ FILE: test/_posts/2013-01-05-markup-title-with-special-characters.md ================================================ --- title: "Markup: Title with Special --- Characters" categories: - Markup tags: - html - markup - post - title --- Putting special characters in the title should have no adverse effect on the layout or functionality. Special characters in the post title have been known to cause issues with JavaScript and XML when not properly encoded and escaped. ## Latin Character Tests This is a test to see if the fonts used in this theme support basic Latin characters.
! # $ % & ( ) *
+ , . / 1 2 3 4
5 6 7 8 9 : ; > = <
? @ A B C D E F G H
I J K L M N O P Q R
S T U V W X Y Z [
] ^ _ ` a b c d e f
g h i j k l m n o p
q r s t u v w x y z
{ | } ~
================================================ FILE: test/_posts/2013-01-09-markup-text-alignment.md ================================================ --- title: "Markup: Text Alignment" categories: - Markup tags: - alignment - content - css - markup --- ### Default This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. ### Left Align This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment. {: style="text-align: left;"} ### Center Align This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes. {: style="text-align: center;"} ### Right Align This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss. {: style="text-align: right;"} ### Justify Align This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude. {: style="text-align: justify;"} ================================================ FILE: test/_posts/2013-01-10-markup-image-alignment.md ================================================ --- title: "Markup: Image Alignment" categories: - Markup tags: - alignment - captions - content - css - image - markup --- Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. ![image-center]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-580x300.jpg){: .align-center} The image above happens to be **centered**. ![image-left]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-150x150.jpg){: .align-left} The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished! And now for a **massively large image**. It also has **no alignment**. ![no-alignment]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-1200x4002.jpg) The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. ![image-right]({{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-300x200.jpg){: .align-right} And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right. And just when you thought we were done, we're going to do them all over again with captions!
Look at 580 x 300 getting some love.
The figure above happens to be **centered**. The caption also has a link in it, just to see if it does anything funky.
Itty-bitty caption.
The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**. As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished! And now for a **massively large image**. It also has **no alignment**.
Massive image comment for your eyeballs.
The figure element above has an inline style of `width: 1200px` set which should break it outside of the normal content flow.
Feels good to be right all the time.
And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right. And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! ================================================ FILE: test/_posts/2013-01-11-markup-html-tags-and-formatting.md ================================================ --- title: "Markup: HTML Tags and Formatting" header: teaser: "assets/images/markup-syntax-highlighting-teaser.jpg" categories: - Markup tags: - content - css - formatting - html - markup toc: true toc_sticky: true --- A variety of common markup showing how the theme styles them. ## Header two ### Header three #### Header four ##### Header five ###### Header six ## Blockquotes Single line blockquote: > Stay hungry. Stay foolish. Multi line blockquote with a cite reference: > People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs --- Apple Worldwide Developers' Conference, 1997 {: .small} ## Tables | Employee | Salary | | | -------- | ------ | ------------------------------------------------------------ | | [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. | | [Jane Doe](#) | $100K | For all the blogging she does. | | [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. | | [Jane Bloggs](#) | $100B | With hair like that?! Enough said. | | Header1 | Header2 | Header3 | |:--------|:-------:|--------:| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |-----------------------------| | cell1 | cell2 | cell3 | | cell4 | cell5 | cell6 | |=============================| | Foot1 | Foot2 | Foot3 | ## Definition Lists Definition List Title : Definition list division. Startup : A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model. #dowork : Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends. Do It Live : I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one. ## Unordered Lists (Nested) * List item one * List item one * List item one * List item two * List item three * List item four * List item two * List item three * List item four * List item two * List item three * List item four ## Ordered List (Nested) 1. List item one 1. List item one 1. List item one 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four 2. List item two 3. List item three 4. List item four ## Forms
Personalia: Name:
Email:
Date of birth:
## Buttons Make any link standout more when applying the `.btn` class. ```html Success Button ``` [Default Button](#){: .btn} [Primary Button](#){: .btn .btn--primary} [Success Button](#){: .btn .btn--success} [Warning Button](#){: .btn .btn--warning} [Danger Button](#){: .btn .btn--danger} [Info Button](#){: .btn .btn--info} [Inverse Button](#){: .btn .btn--inverse} [Light Outline Button](#){: .btn .btn--light-outline} ```markdown [Default Button Text](#link){: .btn} [Primary Button Text](#link){: .btn .btn--primary} [Success Button Text](#link){: .btn .btn--success} [Warning Button Text](#link){: .btn .btn--warning} [Danger Button Text](#link){: .btn .btn--danger} [Info Button Text](#link){: .btn .btn--info} [Inverse Button](#link){: .btn .btn--inverse} [Light Outline Button](#link){: .btn .btn--light-outline} ``` [X-Large Button](#){: .btn .btn--primary .btn--x-large} [Large Button](#){: .btn .btn--primary .btn--large} [Default Button](#){: .btn .btn--primary } [Small Button](#){: .btn .btn--primary .btn--small} ```markdown [X-Large Button](#link){: .btn .btn--primary .btn--x-large} [Large Button](#link){: .btn .btn--primary .btn--large} [Default Button](#link){: .btn .btn--primary } [Small Button](#link){: .btn .btn--primary .btn--small} ``` ## Notices **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice}` class. {: .notice} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--primary}` class. {: .notice--primary} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--info}` class. {: .notice--info} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--warning}` class. {: .notice--warning} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--success}` class. {: .notice--success} **Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--danger}` class. {: .notice--danger} ## HTML Tags ### Address Tag
1 Infinite Loop
Cupertino, CA 95014
United States
### Anchor Tag (aka. Link) This is an example of a [link](http://apple.com "Apple"). ### Abbreviation Tag The abbreviation CSS stands for "Cascading Style Sheets". *[CSS]: Cascading Style Sheets ### Cite Tag "Code is poetry." ---Automattic ### Code Tag You will learn later on in these tests that `word-wrap: break-word;` will be your best friend. ### Strike Tag This tag will let you strikeout text. ### Emphasize Tag The emphasize tag should _italicize_ text. ### Insert Tag This tag should denote inserted text. ### Keyboard Tag This scarcely known tag emulates keyboard text, which is usually styled like the `` tag. ### Preformatted Tag This tag styles large blocks of code.
.post-title {
	margin: 0 0 5px;
	font-weight: bold;
	font-size: 38px;
	line-height: 1.2;
	and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}
### Quote Tag Developers, developers, developers… –Steve Ballmer ### Strong Tag This tag shows **bold text**. ### Subscript Tag Getting our science styling on with H2O, which should push the "2" down. ### Superscript Tag Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. ### Variable Tag This allows you to denote variables. ================================================ FILE: test/_posts/2013-05-22-markup-more-images.md ================================================ --- title: "Markup: Another Post with Images" excerpt: "Examples and code for displaying images in posts." header: teaser: "http://farm9.staticflickr.com/8426/7758832526_cc8f681e48_c.jpg" tags: - sample post - images - test --- Here are some examples of what a post with images might look like. If you want to display two or three images next to each other responsively use `figure` with the appropriate `class`. Each instance of `figure` is auto-numbered and displayed in the caption. ### Figures (for images or video) #### One Up
Morning Fog Emerging From Trees by A Guy Taking Pictures, on Flickr.
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies. #### Two Up Apply the `half` class like so to display two images side by side that share the same caption. ```html
Caption describing these two images.
``` And you'll get something that looks like this:
Two images.
#### Three Up Apply the `third` class like so to display three images side by side that share the same caption. ```html
Caption describing these three images.
``` And you'll get something that looks like this:
Three images.
================================================ FILE: test/_posts/2013-08-16-markup-syntax-highlighting.md ================================================ --- title: "Markup: Syntax Highlighting" excerpt: "Post displaying the various ways of highlighting code in Markdown." last_modified_at: 2018-01-03T09:45:06-05:00 header: teaser: "assets/images/markup-syntax-highlighting-teaser.jpg" tags: - code - syntax highlighting toc: true --- Syntax highlighting is a feature that displays source code, in different colors and fonts according to the category of terms. This feature facilitates writing in a structured language such as a programming language or a markup language as both structures and syntax errors are visually distinct. Highlighting does not affect the meaning of the text itself; it is intended only for human readers.[^1] [^1]: ### GFM Code Blocks GitHub Flavored Markdown [fenced code blocks](https://help.github.com/articles/creating-and-highlighting-code-blocks/) are supported. To modify styling and highlight colors edit `/_sass/syntax.scss`. ```css #container { float: left; margin: 0 -240px 0 0; width: 100%; } ``` {% highlight scss %} .highlight { margin: 0; padding: 1em; font-family: $monospace; font-size: $type-size-7; line-height: 1.8; } {% endhighlight %} ```html {% raw %}{% endraw %} ``` ```ruby module Jekyll class TagIndex < Page def initialize(site, base, dir, tag) @site = site @base = base @dir = dir @name = 'index.html' self.process(@name) self.read_yaml(File.join(base, '_layouts'), 'tag_index.html') self.data['tag'] = tag tag_title_prefix = site.config['tag_title_prefix'] || 'Tagged: ' tag_title_suffix = site.config['tag_title_suffix'] || '–' self.data['title'] = "#{tag_title_prefix}#{tag}" self.data['description'] = "An archive of posts tagged #{tag}." end end end ``` ### Code Blocks in Lists Indentation matters. Be sure the indent of the code block aligns with the first non-space character after the list item marker (e.g., `1.`). Usually this will mean indenting 3 spaces instead of 4. 1. Do step 1. 2. Now do this: ```ruby def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT. ``` 3. Now you can do this. ### Jekyll Highlight Tag An example of a code blocking using Jekyll's [`{% raw %}{% highlight %}{% endraw %}` tag](https://jekyllrb.com/docs/templates/#code-snippet-highlighting). {% highlight javascript linenos %} // 'gulp html' -- does nothing // 'gulp html --prod' -- minifies and gzips HTML files for production gulp.task('html', () => { return gulp.src(paths.siteFolderName + paths.htmlPattern) .pipe(when(argv.prod, htmlmin({ removeComments: true, collapseWhitespace: true, collapseBooleanAttributes: false, removeAttributeQuotes: false, removeRedundantAttributes: false, minifyJS: true, minifyCSS: true }))) .pipe(when(argv.prod, size({title: 'optimized HTML'}))) .pipe(when(argv.prod, gulp.dest(paths.siteFolderName))) .pipe(when(argv.prod, gzip({append: true}))) .pipe(when(argv.prod, size({ title: 'gzipped HTML', gzip: true }))) .pipe(when(argv.prod, gulp.dest(paths.siteFolderName))) }); {% endhighlight %} {% highlight wl linenos %} Module[{}, Sqrt[2] 4 ] {% endhighlight %} ### GitHub Gist Embed An example of a Gist embed below. ================================================ FILE: test/_posts/2016-02-24-welcome-to-jekyll.md ================================================ --- title: "Welcome to Jekyll!" header: teaser: "https://farm5.staticflickr.com/4076/4940499208_b79b77fb0a_z.jpg" categories: - Jekyll tags: - update --- You'll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in [many different ways](https://jekyllrb.com/docs/usage/), but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. To add new posts, simply add a file in the `_posts`[^posts] directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works. [^posts]: Footnote test. Jekyll also offers powerful support for code snippets: ```ruby def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT. ``` Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. [jekyll-docs]: http://jekyllrb.com/docs/home [jekyll-gh]: https://github.com/jekyll/jekyll [jekyll-talk]: https://talk.jekyllrb.com/ ================================================ FILE: test/_posts/2017-01-23-layout-header-video.md ================================================ --- title: "Layout: Header Video" header: video: id: -PVofD2A9t8 provider: youtube categories: - Layout - Uncategorized tags: - video - layout --- This post should display a **header with a responsive video**, if the theme supports it. ## Settings | Parameter | Required | Description | |---------- |--------- | ----------- | | `id` | **Required** | ID of the video | | `provider` | **Required** | Hosting provider of the video, either `youtube` or `vimeo` | ### YouTube To embed the following YouTube video at url `https://www.youtube.com/watch?v=-PVofD2A9t8` (long version) or `https://youtu.be/-PVofD2A9t8` (short version) into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="-PVofD2A9t8" provider="youtube" %}{% endraw %} ``` {% include video id="-PVofD2A9t8" provider="youtube" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: -PVofD2A9t8 provider: youtube ``` ### Vimeo To embed the following Vimeo video at url `https://vimeo.com/212731897` into a post or page's main content you'd use: ```liquid {% raw %}{% include video id="212731897" provider="vimeo" %}{% endraw %} ``` {% include video id="212731897" provider="vimeo" %} To embed it as a video header you'd use the following YAML Front Matter ```yaml header: video: id: 212731897 provider: vimeo ``` ================================================ FILE: test/_posts/2017-11-28-post-exclude-search.md ================================================ --- title: "Exclude Post from Search Index" search: false categories: - Jekyll last_modified_at: 2018-02-19T08:05:34-05:00 --- This post should not appear in the search index because it has the following YAML Front Matter: ```yaml search: false ``` **Note:** `search: false` only works to exclude posts when using **Lunr** as a search provider. {: .notice--info} To exclude files when using **Algolia** as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). ```yaml algolia: # Exclude more files from indexing files_to_exclude: - index.html - index.md - excluded-file.html - _posts/2017-11-28-post-exclude-search.md - subdirectory/*.html ``` ================================================ FILE: test/_recipes/chocolate-chip-cookies.md ================================================ --- title: "Chocolate Chip Cookies" --- A chocolate chip cookie is a drop cookie that originated in the United States and features chocolate chips as its distinguishing ingredient. The traditional recipe combines a dough composed of butter and both brown and white sugar with semi-sweet chocolate chips. Variations include recipes with other types of chocolate as well as additional ingredients such as nuts or oatmeal. This recipe makes 4 dozen cookies. ## Ingredients * 2 1/4 cups all-purpose flour * 1 teaspoon baking soda * 1/2 teaspoon salt * 1 cup butter, softened and cut to pieces * 1 cup sugar * 1 cup light brown sugar, packed * 2 teaspoons vanilla extract * 2 large eggs * 2 cups semi-sweet chocolate chips * 1/2 teaspoon nutmeg (optional) * 1 cup chopped pecans or walnuts (optional) ## Directions 1. Preheat the oven to 350 F. 2. In a medium bowl, whisk flour with baking soda, nutmeg and salt. 3. In a large bowl, beat butter with sugar and brown sugar until creamy and light. Add vanilla and eggs, one at a time, and mix until incorporated. 4. Gradually add dry mixture into the butter-sugar wet blend, mixing with a spatula until combined. Add chocolate chips and nuts until just mixed. 5. Drop tablespoon-sized clumps onto un-greased cookie sheets. Bake for 8-12 minutes, or until pale brown. Allow to cool on the pan for a minute or three, then transfer cookies to a wire rack to finish cooling. ================================================ FILE: test/_recipes/oatmeal-cookies.md ================================================ --- title: "Oatmeal Cookies" --- Oatmeal cookies are a proverbial favorite with both kids and adults. This crisp and chewy cookie is loaded with oats, dried fruit, and chopped nuts. ## Ingredients * 1 cup butter, softened 1 cup white sugar * 1 cup packed brown sugar * 2 eggs * 1 teaspoon vanilla extract * 2 cups all-purpose flour * 1 teaspoon baking soda * 1 teaspoon salt * 1 1/2 teaspoons ground cinnamon * 3 cups quick cooking oats ## Directions 1. In a medium bowl, cream together butter, white sugar, and brown sugar. Beat in eggs one at a time, then stir in vanilla. Combine flour, baking soda, salt, and cinnamon; stir into the creamed mixture. Mix in oats. Cover, and chill dough for at least one hour. 2. Preheat the oven to 375 degrees F (190 degrees C). Grease cookie sheets. Roll the dough into walnut sized balls, and place 2 inches apart on cookie sheets. Flatten each cookie with a large fork dipped in sugar. 3. Bake for 8 to 10 minutes in preheated oven. Allow cookies to cool on baking sheet for 5 minutes before transferring to a wire rack to cool completely. ================================================ FILE: test/_recipes/peanut-butter-cookies.md ================================================ --- title: "Peanut Butter Cookies" --- A peanut butter cookie is a type of cookie that is distinguished for having peanut butter as a principal ingredient. The cookie generally originated in the United States, its development dating back to the 1910s. ## Ingredients * 1 cup unsalted butter * 1 cup crunchy peanut butter * 1 cup white sugar * 1 cup packed brown sugar * 2 eggs 2 * 1/2 cups all-purpose flour * 1 teaspoon baking powder * 1/2 teaspoon salt * 1 1/2 teaspoons baking soda ## Directions 1. Cream butter, peanut butter, and sugars together in a bowl; beat in eggs. 2. In a separate bowl, sift flour, baking powder, baking soda, and salt; stir into butter mixture. Put dough in refrigerator for 1 hour. 3. Roll dough into 1 inch balls and put on baking sheets. Flatten each ball with a fork, making a crisscross pattern. Bake in a preheated 375 degrees F oven for about 10 minutes or until cookies begin to brown. ================================================ FILE: test/index.html ================================================ --- layout: home author_profile: true ---

This text should appear above the recent posts.