├── Dockerfile ├── devnotes.md ├── readme.md ├── wp-config.php └── wp-content ├── database ├── .ht.sqlite ├── .htaccess └── index.php ├── db.php ├── index.php ├── object-cache.php ├── plugins ├── akismet │ ├── .htaccess │ ├── LICENSE.txt │ ├── _inc │ │ ├── akismet-frontend.js │ │ ├── akismet.css │ │ ├── akismet.js │ │ └── img │ │ │ ├── logo-a-2x.png │ │ │ └── logo-full-2x.png │ ├── akismet.php │ ├── changelog.txt │ ├── class.akismet-admin.php │ ├── class.akismet-cli.php │ ├── class.akismet-rest-api.php │ ├── class.akismet-widget.php │ ├── class.akismet.php │ ├── index.php │ ├── readme.txt │ ├── views │ │ ├── activate.php │ │ ├── config.php │ │ ├── connect-jp.php │ │ ├── enter.php │ │ ├── get.php │ │ ├── notice.php │ │ ├── predefined.php │ │ ├── setup.php │ │ ├── start.php │ │ ├── stats.php │ │ └── title.php │ └── wrapper.php ├── hello.php ├── index.php └── performance-lab │ ├── LICENSE │ ├── admin │ └── load.php │ ├── default-enabled-modules.php │ ├── load.php │ ├── module-i18n.php │ ├── modules │ ├── .gitkeep │ ├── database │ │ ├── audit-autoloaded-options │ │ │ └── load.php │ │ └── sqlite │ │ │ ├── activate.php │ │ │ ├── can-load.php │ │ │ ├── constants.php │ │ │ ├── db.copy.php │ │ │ ├── deactivate.php │ │ │ ├── load.php │ │ │ ├── site-health.php │ │ │ └── wp-includes │ │ │ └── sqlite │ │ │ ├── class-perflab-sqlite-alter-query.php │ │ │ ├── class-perflab-sqlite-create-query.php │ │ │ ├── class-perflab-sqlite-db.php │ │ │ ├── class-perflab-sqlite-object-array.php │ │ │ ├── class-perflab-sqlite-pdo-driver.php │ │ │ ├── class-perflab-sqlite-pdo-engine.php │ │ │ ├── class-perflab-sqlite-pdo-user-defined-functions.php │ │ │ ├── db.php │ │ │ └── install-functions.php │ ├── images │ │ ├── dominant-color │ │ │ ├── class-dominant-color-image-editor-gd.php │ │ │ ├── class-dominant-color-image-editor-imagick.php │ │ │ └── load.php │ │ ├── fetchpriority │ │ │ └── load.php │ │ ├── webp-support │ │ │ └── load.php │ │ └── webp-uploads │ │ │ ├── can-load.php │ │ │ ├── fallback.js │ │ │ ├── helper.php │ │ │ ├── image-edit.php │ │ │ ├── load.php │ │ │ ├── rest-api.php │ │ │ └── settings.php │ ├── js-and-css │ │ └── audit-enqueued-assets │ │ │ ├── helper.php │ │ │ └── load.php │ └── object-cache │ │ ├── audit-full-page-cache │ │ ├── can-load.php │ │ ├── helper.php │ │ └── load.php │ │ └── persistent-object-cache-health-check │ │ ├── can-load.php │ │ └── load.php │ ├── readme.txt │ ├── server-timing │ ├── class-perflab-server-timing-metric.php │ ├── class-perflab-server-timing.php │ ├── defaults.php │ ├── load.php │ └── object-cache.copy.php │ └── uninstall.php └── themes ├── index.php ├── twentytwentyone ├── .stylelintignore ├── .stylelintrc-css.json ├── .stylelintrc.json ├── 404.php ├── archive.php ├── assets │ ├── css │ │ ├── custom-color-overrides.css │ │ ├── ie-editor.css │ │ ├── ie.css │ │ ├── print.css │ │ ├── style-dark-mode-rtl.css │ │ ├── style-dark-mode.css │ │ ├── style-editor-customizer.css │ │ └── style-editor.css │ ├── images │ │ ├── Daffodils.jpg │ │ ├── Reading.jpg │ │ ├── in-the-bois-de-boulogne.jpg │ │ ├── playing-in-the-sand.jpg │ │ ├── roses-tremieres-hollyhocks-1884.jpg │ │ ├── self-portrait-1885.jpg │ │ ├── the-garden-at-bougival-1884.jpg │ │ ├── villa-with-orange-trees-nice.jpg │ │ └── young-woman-in-mauve.jpg │ ├── js │ │ ├── customize-helpers.js │ │ ├── customize-preview.js │ │ ├── customize.js │ │ ├── dark-mode-toggler.js │ │ ├── editor-dark-mode-support.js │ │ ├── editor.js │ │ ├── palette-colorpicker.js │ │ ├── polyfills.js │ │ ├── primary-navigation.js │ │ ├── responsive-embeds.js │ │ └── skip-link-focus-fix.js │ └── sass │ │ ├── 01-settings │ │ ├── file-header.scss │ │ ├── fonts.scss │ │ └── global.scss │ │ ├── 02-tools │ │ ├── functions.scss │ │ └── mixins.scss │ │ ├── 03-generic │ │ ├── breakpoints.scss │ │ ├── clearings.scss │ │ ├── normalize.scss │ │ ├── reset.scss │ │ └── vertical-margins.scss │ │ ├── 04-elements │ │ ├── blockquote.scss │ │ ├── forms-editor.scss │ │ ├── forms.scss │ │ ├── links.scss │ │ ├── media.scss │ │ └── misc.scss │ │ ├── 05-blocks │ │ ├── _config.scss │ │ ├── audio │ │ │ └── _style.scss │ │ ├── blocks-editor.scss │ │ ├── blocks.scss │ │ ├── button │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── code │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── columns │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── cover │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── file │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── gallery │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── group │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── heading │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── html │ │ │ └── _editor.scss │ │ ├── image │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── latest-comments │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── latest-posts │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── legacy │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── list │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── media-text │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── navigation │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── paragraph │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── preformatted │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── pullquote │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── query-loop │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── quote │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── rss │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── search │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── separator │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── social-icons │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── table │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── tag-clould │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ ├── utilities │ │ │ ├── _editor.scss │ │ │ ├── _font-sizes.scss │ │ │ └── _style.scss │ │ ├── verse │ │ │ ├── _editor.scss │ │ │ └── _style.scss │ │ └── video │ │ │ └── _style.scss │ │ ├── 06-components │ │ ├── 404.scss │ │ ├── archives.scss │ │ ├── comments.scss │ │ ├── editor.scss │ │ ├── entry.scss │ │ ├── footer-navigation.scss │ │ ├── footer.scss │ │ ├── header.scss │ │ ├── navigation.scss │ │ ├── pagination.scss │ │ ├── posts-and-pages.scss │ │ ├── search.scss │ │ ├── single.scss │ │ └── widgets.scss │ │ ├── 07-utilities │ │ ├── a11y.scss │ │ ├── color-palette.scss │ │ ├── ie.scss │ │ ├── measure.scss │ │ └── print.scss │ │ ├── style-dark-mode.scss │ │ ├── style-editor.scss │ │ └── style.scss ├── classes │ ├── class-twenty-twenty-one-custom-colors.php │ ├── class-twenty-twenty-one-customize-color-control.php │ ├── class-twenty-twenty-one-customize-notice-control.php │ ├── class-twenty-twenty-one-customize.php │ ├── class-twenty-twenty-one-dark-mode.php │ └── class-twenty-twenty-one-svg-icons.php ├── comments.php ├── footer.php ├── functions.php ├── header.php ├── image.php ├── inc │ ├── back-compat.php │ ├── block-patterns.php │ ├── block-styles.php │ ├── custom-css.php │ ├── menu-functions.php │ ├── starter-content.php │ ├── template-functions.php │ └── template-tags.php ├── index.php ├── package-lock.json ├── package.json ├── page.php ├── postcss.config.js ├── readme.txt ├── screenshot.png ├── search.php ├── searchform.php ├── single.php ├── style-rtl.css ├── style.css └── template-parts │ ├── content │ ├── content-excerpt.php │ ├── content-none.php │ ├── content-page.php │ ├── content-single.php │ └── content.php │ ├── excerpt │ ├── excerpt-aside.php │ ├── excerpt-audio.php │ ├── excerpt-chat.php │ ├── excerpt-gallery.php │ ├── excerpt-image.php │ ├── excerpt-link.php │ ├── excerpt-quote.php │ ├── excerpt-status.php │ ├── excerpt-video.php │ └── excerpt.php │ ├── footer │ └── footer-widgets.php │ ├── header │ ├── entry-header.php │ ├── excerpt-header.php │ ├── site-branding.php │ ├── site-header.php │ └── site-nav.php │ └── post │ └── author-bio.php ├── twentytwentythree ├── assets │ └── fonts │ │ ├── dm-sans │ │ ├── DMSans-Bold-Italic.woff2 │ │ ├── DMSans-Bold.woff2 │ │ ├── DMSans-Regular-Italic.woff2 │ │ ├── DMSans-Regular.woff2 │ │ └── LICENSE.txt │ │ ├── ibm-plex-mono │ │ ├── IBMPlexMono-Bold.woff2 │ │ ├── IBMPlexMono-Italic.woff2 │ │ ├── IBMPlexMono-Light.woff2 │ │ ├── IBMPlexMono-Regular.woff2 │ │ └── OFL.txt │ │ ├── inter │ │ ├── Inter-VariableFont_slnt,wght.ttf │ │ └── LICENSE.txt │ │ └── source-serif-pro │ │ ├── LICENSE.md │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ ├── SourceSerif4Variable-Italic.ttf.woff2 │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ └── SourceSerif4Variable-Roman.ttf.woff2 ├── parts │ ├── comments.html │ ├── footer.html │ ├── header.html │ └── post-meta.html ├── patterns │ ├── call-to-action.php │ ├── footer-default.php │ ├── hidden-404.php │ ├── hidden-comments.php │ ├── hidden-no-results.php │ └── post-meta.php ├── readme.txt ├── screenshot.png ├── style.css ├── styles │ ├── aubergine.json │ ├── block-out.json │ ├── canary.json │ ├── electric.json │ ├── grapes.json │ ├── marigold.json │ ├── pilgrimage.json │ ├── pitch.json │ ├── sherbet.json │ └── whisper.json ├── templates │ ├── 404.html │ ├── archive.html │ ├── blank.html │ ├── blog-alternative.html │ ├── home.html │ ├── index.html │ ├── page.html │ ├── search.html │ └── single.html └── theme.json └── twentytwentytwo ├── assets ├── fonts │ ├── SourceSerif4Variable-Italic.otf.woff2 │ ├── SourceSerif4Variable-Italic.ttf.woff2 │ ├── SourceSerif4Variable-Roman.otf.woff2 │ ├── SourceSerif4Variable-Roman.ttf.woff2 │ ├── dm-sans │ │ ├── DMSans-Bold.ttf │ │ ├── DMSans-BoldItalic.ttf │ │ ├── DMSans-Italic.ttf │ │ ├── DMSans-Regular.ttf │ │ └── LICENSE.txt │ ├── ibm-plex │ │ ├── IBMPlexMono-Bold.woff2 │ │ ├── IBMPlexMono-BoldItalic.woff2 │ │ ├── IBMPlexMono-Text.woff2 │ │ ├── IBMPlexMono-TextItalic.woff2 │ │ ├── IBMPlexSans-ExtraLight.woff2 │ │ ├── IBMPlexSans-ExtraLightItalic.woff2 │ │ ├── IBMPlexSans-Light.woff2 │ │ ├── IBMPlexSans-LightItalic.woff2 │ │ └── LICENSE.txt │ ├── inter │ │ ├── Inter.ttf │ │ └── LICENSE.txt │ └── source-serif-pro │ │ ├── LICENSE.md │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ ├── SourceSerif4Variable-Italic.ttf.woff2 │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ └── SourceSerif4Variable-Roman.ttf.woff2 ├── images │ ├── bird-on-black.jpg │ ├── bird-on-gray.jpg │ ├── bird-on-green.jpg │ ├── bird-on-salmon.jpg │ ├── divider-black.png │ ├── divider-white.png │ ├── ducks.jpg │ ├── flight-path-on-gray-a.jpg │ ├── flight-path-on-gray-b.jpg │ ├── flight-path-on-gray-c.jpg │ ├── flight-path-on-salmon.jpg │ ├── flight-path-on-transparent-a.png │ ├── flight-path-on-transparent-b.png │ ├── flight-path-on-transparent-c.png │ ├── flight-path-on-transparent-d.png │ ├── icon-binoculars.png │ └── icon-bird.jpg └── videos │ └── birds.mp4 ├── functions.php ├── inc ├── block-patterns.php └── patterns │ ├── footer-about-title-logo.php │ ├── footer-blog.php │ ├── footer-dark.php │ ├── footer-default.php │ ├── footer-logo.php │ ├── footer-navigation-copyright.php │ ├── footer-navigation.php │ ├── footer-query-images-title-citation.php │ ├── footer-query-title-citation.php │ ├── footer-social-copyright.php │ ├── footer-title-tagline-social.php │ ├── general-divider-dark.php │ ├── general-divider-light.php │ ├── general-featured-posts.php │ ├── general-image-with-caption.php │ ├── general-large-list-names.php │ ├── general-layered-images-with-duotone.php │ ├── general-list-events.php │ ├── general-pricing-table.php │ ├── general-subscribe.php │ ├── general-two-images-text.php │ ├── general-video-header-details.php │ ├── general-video-trailer.php │ ├── general-wide-image-intro-buttons.php │ ├── header-centered-logo-black-background.php │ ├── header-centered-logo.php │ ├── header-centered-title-navigation-social.php │ ├── header-default.php │ ├── header-image-background-overlay.php │ ├── header-image-background.php │ ├── header-large-dark.php │ ├── header-logo-navigation-gray-background.php │ ├── header-logo-navigation-offset-tagline.php │ ├── header-logo-navigation-social-black-background.php │ ├── header-small-dark.php │ ├── header-stacked.php │ ├── header-text-only-green-background.php │ ├── header-text-only-salmon-background.php │ ├── header-text-only-with-tagline-black-background.php │ ├── header-title-and-button.php │ ├── header-title-navigation-social.php │ ├── header-with-tagline.php │ ├── hidden-404.php │ ├── hidden-bird.php │ ├── hidden-heading-and-bird.php │ ├── page-about-large-image-and-buttons.php │ ├── page-about-links-dark.php │ ├── page-about-links.php │ ├── page-about-media-left.php │ ├── page-about-media-right.php │ ├── page-about-simple-dark.php │ ├── page-about-solid-color.php │ ├── page-layout-image-and-text.php │ ├── page-layout-image-text-and-video.php │ ├── page-layout-two-columns.php │ ├── page-sidebar-blog-posts-right.php │ ├── page-sidebar-blog-posts.php │ ├── page-sidebar-grid-posts.php │ ├── page-sidebar-poster.php │ ├── query-default.php │ ├── query-grid.php │ ├── query-image-grid.php │ ├── query-irregular-grid.php │ ├── query-large-titles.php │ ├── query-simple-blog.php │ └── query-text-grid.php ├── index.php ├── parts ├── footer.html ├── header-large-dark.html ├── header-small-dark.html └── header.html ├── readme.txt ├── screenshot.png ├── style.css ├── styles ├── blue.json ├── pink.json └── swiss.json ├── templates ├── 404.html ├── archive.html ├── blank.html ├── home.html ├── index.html ├── page-large-header.html ├── page-no-separators.html ├── page.html ├── search.html ├── single-no-separators.html └── single.html └── theme.json /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/Dockerfile -------------------------------------------------------------------------------- /devnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/devnotes.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/readme.md -------------------------------------------------------------------------------- /wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-config.php -------------------------------------------------------------------------------- /wp-content/database/.ht.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/database/.ht.sqlite -------------------------------------------------------------------------------- /wp-content/database/.htaccess: -------------------------------------------------------------------------------- 1 | DENY FROM ALL -------------------------------------------------------------------------------- /wp-content/database/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp-content/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/db.php -------------------------------------------------------------------------------- /wp-content/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/blog-alternative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/blog-alternative.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/home.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/index.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/page.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/search.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/templates/single.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentythree/theme.json -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Bold.ttf -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-BoldItalic.ttf -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Italic.ttf -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/DMSans-Regular.ttf -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans/LICENSE.txt -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Bold.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Text.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-Text.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexMono-TextItalic.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-LightItalic.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex/LICENSE.txt -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/inter/Inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/inter/Inter.ttf -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/inter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/inter/LICENSE.txt -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/LICENSE.md -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/divider-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/divider-black.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/divider-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/divider-white.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/ducks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/ducks.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/assets/videos/birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/assets/videos/birds.mp4 -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/functions.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/block-patterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/block-patterns.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-default.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-default.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/index.php -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/parts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/parts/footer.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/parts/header-large-dark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/parts/header-large-dark.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/parts/header-small-dark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/parts/header-small-dark.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/parts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/parts/header.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/readme.txt -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/screenshot.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/style.css -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/styles/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/styles/blue.json -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/styles/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/styles/pink.json -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/styles/swiss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/styles/swiss.json -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/404.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/archive.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/blank.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/home.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/index.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/page-large-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/page-large-header.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/page-no-separators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/page-no-separators.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/page.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/search.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/single-no-separators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/single-no-separators.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/templates/single.html -------------------------------------------------------------------------------- /wp-content/themes/twentytwentytwo/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/wordpress-sqlite/HEAD/wp-content/themes/twentytwentytwo/theme.json --------------------------------------------------------------------------------