├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature---enhancement.md │ └── Question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── lint.yml │ ├── preview.yml │ └── props-bot.yml ├── .gitignore ├── .nvmrc ├── .stylelintrc.json ├── CONTRIBUTORS.MD ├── README.md ├── assets ├── css │ └── editor-style.css ├── fonts │ ├── beiruti │ │ └── Beiruti-VariableFont_wght.woff2 │ ├── fira-code │ │ └── FiraCode-VariableFont_wght.woff2 │ ├── fira-sans │ │ ├── FiraSans-Black.woff2 │ │ ├── FiraSans-BlackItalic.woff2 │ │ ├── FiraSans-Bold.woff2 │ │ ├── FiraSans-BoldItalic.woff2 │ │ ├── FiraSans-ExtraBold.woff2 │ │ ├── FiraSans-ExtraBoldItalic.woff2 │ │ ├── FiraSans-ExtraLight.woff2 │ │ ├── FiraSans-ExtraLightItalic.woff2 │ │ ├── FiraSans-Italic.woff2 │ │ ├── FiraSans-Light.woff2 │ │ ├── FiraSans-LightItalic.woff2 │ │ ├── FiraSans-Medium.woff2 │ │ ├── FiraSans-MediumItalic.woff2 │ │ ├── FiraSans-Regular.woff2 │ │ ├── FiraSans-SemiBold.woff2 │ │ ├── FiraSans-SemiBoldItalic.woff2 │ │ ├── FiraSans-Thin.woff2 │ │ └── FiraSans-ThinItalic.woff2 │ ├── literata │ │ ├── Literata72pt-Black.woff2 │ │ ├── Literata72pt-BlackItalic.woff2 │ │ ├── Literata72pt-Bold.woff2 │ │ ├── Literata72pt-BoldItalic.woff2 │ │ ├── Literata72pt-ExtraBold.woff2 │ │ ├── Literata72pt-ExtraBoldItalic.woff2 │ │ ├── Literata72pt-ExtraLight.woff2 │ │ ├── Literata72pt-ExtraLightItalic.woff2 │ │ ├── Literata72pt-Light.woff2 │ │ ├── Literata72pt-LightItalic.woff2 │ │ ├── Literata72pt-Medium.woff2 │ │ ├── Literata72pt-MediumItalic.woff2 │ │ ├── Literata72pt-Regular.woff2 │ │ ├── Literata72pt-RegularItalic.woff2 │ │ ├── Literata72pt-SemiBold.woff2 │ │ └── Literata72pt-SemiBoldItalic.woff2 │ ├── manrope │ │ └── Manrope-VariableFont_wght.woff2 │ ├── platypi │ │ ├── Platypi-Italic-VariableFont_wght.woff2 │ │ └── Platypi-VariableFont_wght.woff2 │ ├── roboto-slab │ │ └── RobotoSlab-VariableFont_wght.woff2 │ ├── vollkorn │ │ ├── Vollkorn-Italic-VariableFont_wght.woff2 │ │ └── Vollkorn-VariableFont_wght.woff2 │ └── ysabeau-office │ │ ├── YsabeauOffice-Italic-VariableFont_wght.woff2 │ │ └── YsabeauOffice-VariableFont_wght.woff2 └── images │ ├── 404-image.webp │ ├── agenda-img-4.webp │ ├── akaka-falls-state-park-flora.webp │ ├── book-image-landing.webp │ ├── book-image.webp │ ├── botany-flowers-closeup.webp │ ├── botany-flowers.webp │ ├── campanula-alliariifolia-flower.webp │ ├── category-anthuriums.webp │ ├── category-cactus.webp │ ├── category-sunflowers.webp │ ├── coming-soon-bg-image.webp │ ├── coral-square.webp │ ├── dallas-creek-square.webp │ ├── delphinium-flowers.webp │ ├── flower-meadow-square.webp │ ├── grid-flower-1.webp │ ├── grid-flower-2.webp │ ├── hero-podcast.webp │ ├── link-in-bio-background.webp │ ├── link-in-bio-image.webp │ ├── location.webp │ ├── malibu-plantlife.webp │ ├── man-in-hat.webp │ ├── marshland-birds-square.webp │ ├── northern-buttercups-flowers.webp │ ├── nurse.webp │ ├── parthenon-square.webp │ ├── poster-image-background.webp │ ├── red-hibiscus-closeup.webp │ ├── ruins-image.webp │ ├── services-subscriber-photo.webp │ ├── star-thristle-flower.webp │ ├── typewriter.webp │ ├── vash-gon-square.webp │ └── woman-splashing-water.webp ├── composer.json ├── composer.lock ├── functions.php ├── package.json ├── parts ├── footer-columns.html ├── footer-newsletter.html ├── footer.html ├── header-large-title.html ├── header.html ├── sidebar.html └── vertical-header.html ├── patterns ├── banner-about-book.php ├── banner-cover-big-heading.php ├── banner-intro-image.php ├── banner-intro.php ├── banner-poster.php ├── banner-with-description-and-images-grid.php ├── binding-format.php ├── comments.php ├── contact-centered-social-link.php ├── contact-info-locations.php ├── contact-location-and-link.php ├── cta-book-links.php ├── cta-book-locations.php ├── cta-centered-heading.php ├── cta-events-list.php ├── cta-grid-products-link.php ├── cta-heading-search.php ├── cta-newsletter.php ├── event-3-col.php ├── event-rsvp.php ├── event-schedule.php ├── footer-centered.php ├── footer-columns.php ├── footer-newsletter.php ├── footer-social.php ├── footer.php ├── format-audio.php ├── format-link.php ├── grid-videos.php ├── grid-with-categories.php ├── header-centered.php ├── header-columns.php ├── header-large-title.php ├── header.php ├── heading-and-paragraph-with-image.php ├── hero-book.php ├── hero-full-width-image.php ├── hero-overlapped-book-cover-with-links.php ├── hero-podcast.php ├── hidden-404.php ├── hidden-blog-heading.php ├── hidden-search.php ├── hidden-sidebar.php ├── hidden-written-by.php ├── logos.php ├── media-instagram-grid.php ├── more-posts.php ├── overlapped-images.php ├── page-business-home.php ├── page-coming-soon.php ├── page-cv-bio.php ├── page-landing-book.php ├── page-landing-event.php ├── page-landing-podcast.php ├── page-link-in-bio-heading-paragraph-links-image.php ├── page-link-in-bio-wide-margins.php ├── page-link-in-bio-with-tight-margins.php ├── page-portfolio-home.php ├── page-shop-home.php ├── post-navigation.php ├── pricing-2-col.php ├── pricing-3-col.php ├── services-3-col.php ├── services-subscriber-only-section.php ├── services-team-photos.php ├── template-404-vertical-header-blog.php ├── template-archive-news-blog.php ├── template-archive-photo-blog.php ├── template-archive-text-blog.php ├── template-archive-vertical-header-blog.php ├── template-home-news-blog.php ├── template-home-photo-blog.php ├── template-home-posts-grid-news-blog.php ├── template-home-text-blog.php ├── template-home-vertical-header-blog.php ├── template-home-with-sidebar-news-blog.php ├── template-page-photo-blog.php ├── template-page-vertical-header-blog.php ├── template-query-loop-news-blog.php ├── template-query-loop-photo-blog.php ├── template-query-loop-text-blog.php ├── template-query-loop-vertical-header-blog.php ├── template-query-loop.php ├── template-search-news-blog.php ├── template-search-photo-blog.php ├── template-search-text-blog.php ├── template-search-vertical-header-blog.php ├── template-single-left-aligned-content.php ├── template-single-news-blog.php ├── template-single-offset.php ├── template-single-photo-blog.php ├── template-single-text-blog.php ├── template-single-vertical-header-blog.php ├── testimonials-2-col.php ├── testimonials-6-col.php ├── testimonials-large.php ├── text-faqs.php └── vertical-header.php ├── phpcs.xml.dist ├── readme.txt ├── screenshot.png ├── style.css ├── styles ├── 01-evening.json ├── 02-noon.json ├── 03-dusk.json ├── 04-afternoon.json ├── 05-twilight.json ├── 06-morning.json ├── 07-sunrise.json ├── 08-midnight.json ├── blocks │ ├── 01-display.json │ ├── 02-subtitle.json │ ├── 03-annotation.json │ └── post-terms-1.json ├── colors │ ├── 01-evening.json │ ├── 02-noon.json │ ├── 03-dusk.json │ ├── 04-afternoon.json │ ├── 05-twilight.json │ ├── 06-morning.json │ ├── 07-sunrise.json │ └── 08-midnight.json ├── sections │ ├── section-1.json │ ├── section-2.json │ ├── section-3.json │ ├── section-4.json │ └── section-5.json └── typography │ ├── typography-preset-1.json │ ├── typography-preset-2.json │ ├── typography-preset-3.json │ ├── typography-preset-4.json │ ├── typography-preset-5.json │ ├── typography-preset-6.json │ └── typography-preset-7.json ├── templates ├── 404.html ├── archive.html ├── home.html ├── index.html ├── page-no-title.html ├── page.html ├── search.html └── single.html ├── theme-utils.mjs └── theme.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature---enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/ISSUE_TEMPLATE/Feature---enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/ISSUE_TEMPLATE/Question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/props-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/.github/workflows/props-bot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | *.DS_Store 4 | .vscode 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-recommended" 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTORS.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/CONTRIBUTORS.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/css/editor-style.css -------------------------------------------------------------------------------- /assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Black.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-BlackItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-LightItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-SemiBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-Thin.woff2 -------------------------------------------------------------------------------- /assets/fonts/fira-sans/FiraSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/fira-sans/FiraSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-Black.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-BlackItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-ExtraBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-ExtraLight.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-LightItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-RegularItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-SemiBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/manrope/Manrope-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/manrope/Manrope-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/platypi/Platypi-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/platypi/Platypi-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /assets/images/404-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/404-image.webp -------------------------------------------------------------------------------- /assets/images/agenda-img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/agenda-img-4.webp -------------------------------------------------------------------------------- /assets/images/akaka-falls-state-park-flora.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/akaka-falls-state-park-flora.webp -------------------------------------------------------------------------------- /assets/images/book-image-landing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/book-image-landing.webp -------------------------------------------------------------------------------- /assets/images/book-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/book-image.webp -------------------------------------------------------------------------------- /assets/images/botany-flowers-closeup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/botany-flowers-closeup.webp -------------------------------------------------------------------------------- /assets/images/botany-flowers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/botany-flowers.webp -------------------------------------------------------------------------------- /assets/images/campanula-alliariifolia-flower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/campanula-alliariifolia-flower.webp -------------------------------------------------------------------------------- /assets/images/category-anthuriums.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/category-anthuriums.webp -------------------------------------------------------------------------------- /assets/images/category-cactus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/category-cactus.webp -------------------------------------------------------------------------------- /assets/images/category-sunflowers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/category-sunflowers.webp -------------------------------------------------------------------------------- /assets/images/coming-soon-bg-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/coming-soon-bg-image.webp -------------------------------------------------------------------------------- /assets/images/coral-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/coral-square.webp -------------------------------------------------------------------------------- /assets/images/dallas-creek-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/dallas-creek-square.webp -------------------------------------------------------------------------------- /assets/images/delphinium-flowers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/delphinium-flowers.webp -------------------------------------------------------------------------------- /assets/images/flower-meadow-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/flower-meadow-square.webp -------------------------------------------------------------------------------- /assets/images/grid-flower-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/grid-flower-1.webp -------------------------------------------------------------------------------- /assets/images/grid-flower-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/grid-flower-2.webp -------------------------------------------------------------------------------- /assets/images/hero-podcast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/hero-podcast.webp -------------------------------------------------------------------------------- /assets/images/link-in-bio-background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/link-in-bio-background.webp -------------------------------------------------------------------------------- /assets/images/link-in-bio-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/link-in-bio-image.webp -------------------------------------------------------------------------------- /assets/images/location.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/location.webp -------------------------------------------------------------------------------- /assets/images/malibu-plantlife.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/malibu-plantlife.webp -------------------------------------------------------------------------------- /assets/images/man-in-hat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/man-in-hat.webp -------------------------------------------------------------------------------- /assets/images/marshland-birds-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/marshland-birds-square.webp -------------------------------------------------------------------------------- /assets/images/northern-buttercups-flowers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/northern-buttercups-flowers.webp -------------------------------------------------------------------------------- /assets/images/nurse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/nurse.webp -------------------------------------------------------------------------------- /assets/images/parthenon-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/parthenon-square.webp -------------------------------------------------------------------------------- /assets/images/poster-image-background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/poster-image-background.webp -------------------------------------------------------------------------------- /assets/images/red-hibiscus-closeup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/red-hibiscus-closeup.webp -------------------------------------------------------------------------------- /assets/images/ruins-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/ruins-image.webp -------------------------------------------------------------------------------- /assets/images/services-subscriber-photo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/services-subscriber-photo.webp -------------------------------------------------------------------------------- /assets/images/star-thristle-flower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/star-thristle-flower.webp -------------------------------------------------------------------------------- /assets/images/typewriter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/typewriter.webp -------------------------------------------------------------------------------- /assets/images/vash-gon-square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/vash-gon-square.webp -------------------------------------------------------------------------------- /assets/images/woman-splashing-water.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/assets/images/woman-splashing-water.webp -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/composer.lock -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/functions.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/package.json -------------------------------------------------------------------------------- /parts/footer-columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/footer-columns.html -------------------------------------------------------------------------------- /parts/footer-newsletter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/footer-newsletter.html -------------------------------------------------------------------------------- /parts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/footer.html -------------------------------------------------------------------------------- /parts/header-large-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/header-large-title.html -------------------------------------------------------------------------------- /parts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/header.html -------------------------------------------------------------------------------- /parts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/sidebar.html -------------------------------------------------------------------------------- /parts/vertical-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/parts/vertical-header.html -------------------------------------------------------------------------------- /patterns/banner-about-book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-about-book.php -------------------------------------------------------------------------------- /patterns/banner-cover-big-heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-cover-big-heading.php -------------------------------------------------------------------------------- /patterns/banner-intro-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-intro-image.php -------------------------------------------------------------------------------- /patterns/banner-intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-intro.php -------------------------------------------------------------------------------- /patterns/banner-poster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-poster.php -------------------------------------------------------------------------------- /patterns/banner-with-description-and-images-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/banner-with-description-and-images-grid.php -------------------------------------------------------------------------------- /patterns/binding-format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/binding-format.php -------------------------------------------------------------------------------- /patterns/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/comments.php -------------------------------------------------------------------------------- /patterns/contact-centered-social-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/contact-centered-social-link.php -------------------------------------------------------------------------------- /patterns/contact-info-locations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/contact-info-locations.php -------------------------------------------------------------------------------- /patterns/contact-location-and-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/contact-location-and-link.php -------------------------------------------------------------------------------- /patterns/cta-book-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-book-links.php -------------------------------------------------------------------------------- /patterns/cta-book-locations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-book-locations.php -------------------------------------------------------------------------------- /patterns/cta-centered-heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-centered-heading.php -------------------------------------------------------------------------------- /patterns/cta-events-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-events-list.php -------------------------------------------------------------------------------- /patterns/cta-grid-products-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-grid-products-link.php -------------------------------------------------------------------------------- /patterns/cta-heading-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-heading-search.php -------------------------------------------------------------------------------- /patterns/cta-newsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/cta-newsletter.php -------------------------------------------------------------------------------- /patterns/event-3-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/event-3-col.php -------------------------------------------------------------------------------- /patterns/event-rsvp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/event-rsvp.php -------------------------------------------------------------------------------- /patterns/event-schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/event-schedule.php -------------------------------------------------------------------------------- /patterns/footer-centered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/footer-centered.php -------------------------------------------------------------------------------- /patterns/footer-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/footer-columns.php -------------------------------------------------------------------------------- /patterns/footer-newsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/footer-newsletter.php -------------------------------------------------------------------------------- /patterns/footer-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/footer-social.php -------------------------------------------------------------------------------- /patterns/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/footer.php -------------------------------------------------------------------------------- /patterns/format-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/format-audio.php -------------------------------------------------------------------------------- /patterns/format-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/format-link.php -------------------------------------------------------------------------------- /patterns/grid-videos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/grid-videos.php -------------------------------------------------------------------------------- /patterns/grid-with-categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/grid-with-categories.php -------------------------------------------------------------------------------- /patterns/header-centered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/header-centered.php -------------------------------------------------------------------------------- /patterns/header-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/header-columns.php -------------------------------------------------------------------------------- /patterns/header-large-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/header-large-title.php -------------------------------------------------------------------------------- /patterns/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/header.php -------------------------------------------------------------------------------- /patterns/heading-and-paragraph-with-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/heading-and-paragraph-with-image.php -------------------------------------------------------------------------------- /patterns/hero-book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hero-book.php -------------------------------------------------------------------------------- /patterns/hero-full-width-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hero-full-width-image.php -------------------------------------------------------------------------------- /patterns/hero-overlapped-book-cover-with-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hero-overlapped-book-cover-with-links.php -------------------------------------------------------------------------------- /patterns/hero-podcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hero-podcast.php -------------------------------------------------------------------------------- /patterns/hidden-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hidden-404.php -------------------------------------------------------------------------------- /patterns/hidden-blog-heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hidden-blog-heading.php -------------------------------------------------------------------------------- /patterns/hidden-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hidden-search.php -------------------------------------------------------------------------------- /patterns/hidden-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hidden-sidebar.php -------------------------------------------------------------------------------- /patterns/hidden-written-by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/hidden-written-by.php -------------------------------------------------------------------------------- /patterns/logos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/logos.php -------------------------------------------------------------------------------- /patterns/media-instagram-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/media-instagram-grid.php -------------------------------------------------------------------------------- /patterns/more-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/more-posts.php -------------------------------------------------------------------------------- /patterns/overlapped-images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/overlapped-images.php -------------------------------------------------------------------------------- /patterns/page-business-home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-business-home.php -------------------------------------------------------------------------------- /patterns/page-coming-soon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-coming-soon.php -------------------------------------------------------------------------------- /patterns/page-cv-bio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-cv-bio.php -------------------------------------------------------------------------------- /patterns/page-landing-book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-landing-book.php -------------------------------------------------------------------------------- /patterns/page-landing-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-landing-event.php -------------------------------------------------------------------------------- /patterns/page-landing-podcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-landing-podcast.php -------------------------------------------------------------------------------- /patterns/page-link-in-bio-heading-paragraph-links-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-link-in-bio-heading-paragraph-links-image.php -------------------------------------------------------------------------------- /patterns/page-link-in-bio-wide-margins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-link-in-bio-wide-margins.php -------------------------------------------------------------------------------- /patterns/page-link-in-bio-with-tight-margins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-link-in-bio-with-tight-margins.php -------------------------------------------------------------------------------- /patterns/page-portfolio-home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-portfolio-home.php -------------------------------------------------------------------------------- /patterns/page-shop-home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/page-shop-home.php -------------------------------------------------------------------------------- /patterns/post-navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/post-navigation.php -------------------------------------------------------------------------------- /patterns/pricing-2-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/pricing-2-col.php -------------------------------------------------------------------------------- /patterns/pricing-3-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/pricing-3-col.php -------------------------------------------------------------------------------- /patterns/services-3-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/services-3-col.php -------------------------------------------------------------------------------- /patterns/services-subscriber-only-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/services-subscriber-only-section.php -------------------------------------------------------------------------------- /patterns/services-team-photos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/services-team-photos.php -------------------------------------------------------------------------------- /patterns/template-404-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-404-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-archive-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-archive-news-blog.php -------------------------------------------------------------------------------- /patterns/template-archive-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-archive-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-archive-text-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-archive-text-blog.php -------------------------------------------------------------------------------- /patterns/template-archive-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-archive-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-home-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-news-blog.php -------------------------------------------------------------------------------- /patterns/template-home-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-home-posts-grid-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-posts-grid-news-blog.php -------------------------------------------------------------------------------- /patterns/template-home-text-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-text-blog.php -------------------------------------------------------------------------------- /patterns/template-home-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-home-with-sidebar-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-home-with-sidebar-news-blog.php -------------------------------------------------------------------------------- /patterns/template-page-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-page-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-page-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-page-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-query-loop-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-query-loop-news-blog.php -------------------------------------------------------------------------------- /patterns/template-query-loop-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-query-loop-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-query-loop-text-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-query-loop-text-blog.php -------------------------------------------------------------------------------- /patterns/template-query-loop-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-query-loop-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-query-loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-query-loop.php -------------------------------------------------------------------------------- /patterns/template-search-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-search-news-blog.php -------------------------------------------------------------------------------- /patterns/template-search-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-search-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-search-text-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-search-text-blog.php -------------------------------------------------------------------------------- /patterns/template-search-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-search-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/template-single-left-aligned-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-left-aligned-content.php -------------------------------------------------------------------------------- /patterns/template-single-news-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-news-blog.php -------------------------------------------------------------------------------- /patterns/template-single-offset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-offset.php -------------------------------------------------------------------------------- /patterns/template-single-photo-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-photo-blog.php -------------------------------------------------------------------------------- /patterns/template-single-text-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-text-blog.php -------------------------------------------------------------------------------- /patterns/template-single-vertical-header-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/template-single-vertical-header-blog.php -------------------------------------------------------------------------------- /patterns/testimonials-2-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/testimonials-2-col.php -------------------------------------------------------------------------------- /patterns/testimonials-6-col.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/testimonials-6-col.php -------------------------------------------------------------------------------- /patterns/testimonials-large.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/testimonials-large.php -------------------------------------------------------------------------------- /patterns/text-faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/text-faqs.php -------------------------------------------------------------------------------- /patterns/vertical-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/patterns/vertical-header.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/screenshot.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/style.css -------------------------------------------------------------------------------- /styles/01-evening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/01-evening.json -------------------------------------------------------------------------------- /styles/02-noon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/02-noon.json -------------------------------------------------------------------------------- /styles/03-dusk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/03-dusk.json -------------------------------------------------------------------------------- /styles/04-afternoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/04-afternoon.json -------------------------------------------------------------------------------- /styles/05-twilight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/05-twilight.json -------------------------------------------------------------------------------- /styles/06-morning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/06-morning.json -------------------------------------------------------------------------------- /styles/07-sunrise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/07-sunrise.json -------------------------------------------------------------------------------- /styles/08-midnight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/08-midnight.json -------------------------------------------------------------------------------- /styles/blocks/01-display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/blocks/01-display.json -------------------------------------------------------------------------------- /styles/blocks/02-subtitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/blocks/02-subtitle.json -------------------------------------------------------------------------------- /styles/blocks/03-annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/blocks/03-annotation.json -------------------------------------------------------------------------------- /styles/blocks/post-terms-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/blocks/post-terms-1.json -------------------------------------------------------------------------------- /styles/colors/01-evening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/01-evening.json -------------------------------------------------------------------------------- /styles/colors/02-noon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/02-noon.json -------------------------------------------------------------------------------- /styles/colors/03-dusk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/03-dusk.json -------------------------------------------------------------------------------- /styles/colors/04-afternoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/04-afternoon.json -------------------------------------------------------------------------------- /styles/colors/05-twilight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/05-twilight.json -------------------------------------------------------------------------------- /styles/colors/06-morning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/06-morning.json -------------------------------------------------------------------------------- /styles/colors/07-sunrise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/07-sunrise.json -------------------------------------------------------------------------------- /styles/colors/08-midnight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/colors/08-midnight.json -------------------------------------------------------------------------------- /styles/sections/section-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/sections/section-1.json -------------------------------------------------------------------------------- /styles/sections/section-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/sections/section-2.json -------------------------------------------------------------------------------- /styles/sections/section-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/sections/section-3.json -------------------------------------------------------------------------------- /styles/sections/section-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/sections/section-4.json -------------------------------------------------------------------------------- /styles/sections/section-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/sections/section-5.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-1.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-2.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-3.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-4.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-5.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-6.json -------------------------------------------------------------------------------- /styles/typography/typography-preset-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/styles/typography/typography-preset-7.json -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/archive.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/page-no-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/page-no-title.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/templates/single.html -------------------------------------------------------------------------------- /theme-utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/theme-utils.mjs -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentyfive/HEAD/theme.json --------------------------------------------------------------------------------