├── .editorconfig ├── .github └── workflows │ └── lint.yml ├── .gitignore ├── .nvmrc ├── .phpcs.xml.dist ├── .stylelintrc.json ├── CONTRIBUTORS.md ├── DESIGN-SPEC.md ├── README.md ├── 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 ├── bin └── phpcbf.sh ├── composer.json ├── composer.lock ├── package.json ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | *.DS_Store 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-recommended" 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /DESIGN-SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/DESIGN-SPEC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/dm-sans/DMSans-Bold-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/dm-sans/DMSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/dm-sans/DMSans-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/dm-sans/DMSans-Regular-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/dm-sans/DMSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/dm-sans/DMSans-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/dm-sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/dm-sans/LICENSE.txt -------------------------------------------------------------------------------- /assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/ibm-plex-mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/ibm-plex-mono/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/inter/LICENSE.txt -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/source-serif-pro/LICENSE.md -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 -------------------------------------------------------------------------------- /bin/phpcbf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/bin/phpcbf.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/package.json -------------------------------------------------------------------------------- /parts/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/parts/comments.html -------------------------------------------------------------------------------- /parts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/parts/footer.html -------------------------------------------------------------------------------- /parts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/parts/header.html -------------------------------------------------------------------------------- /parts/post-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/parts/post-meta.html -------------------------------------------------------------------------------- /patterns/call-to-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/call-to-action.php -------------------------------------------------------------------------------- /patterns/footer-default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/footer-default.php -------------------------------------------------------------------------------- /patterns/hidden-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/hidden-404.php -------------------------------------------------------------------------------- /patterns/hidden-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/hidden-comments.php -------------------------------------------------------------------------------- /patterns/hidden-no-results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/hidden-no-results.php -------------------------------------------------------------------------------- /patterns/post-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/patterns/post-meta.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/screenshot.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/style.css -------------------------------------------------------------------------------- /styles/aubergine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/aubergine.json -------------------------------------------------------------------------------- /styles/block-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/block-out.json -------------------------------------------------------------------------------- /styles/canary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/canary.json -------------------------------------------------------------------------------- /styles/electric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/electric.json -------------------------------------------------------------------------------- /styles/grapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/grapes.json -------------------------------------------------------------------------------- /styles/marigold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/marigold.json -------------------------------------------------------------------------------- /styles/pilgrimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/pilgrimage.json -------------------------------------------------------------------------------- /styles/pitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/pitch.json -------------------------------------------------------------------------------- /styles/sherbet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/sherbet.json -------------------------------------------------------------------------------- /styles/whisper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/styles/whisper.json -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/archive.html -------------------------------------------------------------------------------- /templates/blank.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/blog-alternative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/blog-alternative.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/templates/single.html -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/twentytwentythree/HEAD/theme.json --------------------------------------------------------------------------------