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