├── .editorconfig ├── .gitattributes ├── .gitignore ├── .wp-env.json ├── README.md ├── _assets └── icon-wp.svg ├── _bin ├── constants.js ├── createAllZipsExamples.js ├── createZipExample.js ├── data │ ├── examples.json │ └── tags.json ├── generateExamplesTableMarkdown.js ├── updateTableMarkdown.js └── utils │ ├── createZip.js │ └── log.js ├── _zips ├── example-block-style-js.zip ├── example-block-style-php.zip ├── example-block-stylesheet.zip ├── example-block-variation.zip ├── example-build-process.zip ├── example-locked-pattern.zip ├── example-template-part-area.zip ├── twentytwentyfour-starter-content-patterns.zip └── twentytwentyfour-starter-template-patterns.zip ├── example-block-style-js ├── .wp-env.json ├── LICENSE.md ├── README.md ├── _playground │ ├── blueprint.json │ └── export.xml ├── assets │ └── js │ │ └── block-styles.js ├── functions.php ├── screenshot.png └── style.css ├── example-block-style-php ├── LICENSE.md ├── README.md ├── _playground │ ├── blueprint.json │ └── export.xml ├── functions.php ├── screenshot.png └── style.css ├── example-block-stylesheet ├── LICENSE.md ├── README.md ├── assets │ └── css │ │ └── blocks │ │ └── core-image.css ├── functions.php ├── screenshot.png └── style.css ├── example-block-variation ├── LICENSE.md ├── README.md ├── assets │ └── js │ │ └── block-variations.js ├── functions.php ├── screenshot.png └── style.css ├── example-build-process ├── LICENSE.md ├── README.md ├── functions.php ├── package-lock.json ├── package.json ├── public │ ├── css │ │ ├── editor.asset.php │ │ ├── editor.css │ │ ├── screen.asset.php │ │ └── screen.css │ └── js │ │ ├── editor.asset.php │ │ └── editor.js ├── resources │ ├── js │ │ └── editor.js │ └── scss │ │ ├── editor.scss │ │ └── screen.scss ├── screenshot.png ├── style.css └── webpack.config.js ├── example-locked-pattern ├── LICENSE.md ├── README.md ├── patterns │ └── custom-event.php ├── screenshot.png └── style.css ├── example-template-part-area ├── LICENSE.md ├── README.md ├── functions.php ├── parts │ ├── footer.html │ ├── header.html │ ├── post-meta.html │ └── sidebar.html ├── screenshot.png ├── style.css └── theme.json ├── package.json ├── twentytwentyfour-starter-content-patterns ├── LICENSE.md ├── README.md ├── patterns │ └── event-announcement.php ├── screenshot.png └── style.css └── twentytwentyfour-starter-template-patterns ├── LICENSE.md ├── README.md ├── patterns └── template-archive.php ├── screenshot.png └── style.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules 3 | .DS_Store 4 | _temp -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/.wp-env.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/README.md -------------------------------------------------------------------------------- /_assets/icon-wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_assets/icon-wp.svg -------------------------------------------------------------------------------- /_bin/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/constants.js -------------------------------------------------------------------------------- /_bin/createAllZipsExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/createAllZipsExamples.js -------------------------------------------------------------------------------- /_bin/createZipExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/createZipExample.js -------------------------------------------------------------------------------- /_bin/data/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/data/examples.json -------------------------------------------------------------------------------- /_bin/data/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/data/tags.json -------------------------------------------------------------------------------- /_bin/generateExamplesTableMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/generateExamplesTableMarkdown.js -------------------------------------------------------------------------------- /_bin/updateTableMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/updateTableMarkdown.js -------------------------------------------------------------------------------- /_bin/utils/createZip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/utils/createZip.js -------------------------------------------------------------------------------- /_bin/utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_bin/utils/log.js -------------------------------------------------------------------------------- /_zips/example-block-style-js.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-block-style-js.zip -------------------------------------------------------------------------------- /_zips/example-block-style-php.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-block-style-php.zip -------------------------------------------------------------------------------- /_zips/example-block-stylesheet.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-block-stylesheet.zip -------------------------------------------------------------------------------- /_zips/example-block-variation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-block-variation.zip -------------------------------------------------------------------------------- /_zips/example-build-process.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-build-process.zip -------------------------------------------------------------------------------- /_zips/example-locked-pattern.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-locked-pattern.zip -------------------------------------------------------------------------------- /_zips/example-template-part-area.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/example-template-part-area.zip -------------------------------------------------------------------------------- /_zips/twentytwentyfour-starter-content-patterns.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/twentytwentyfour-starter-content-patterns.zip -------------------------------------------------------------------------------- /_zips/twentytwentyfour-starter-template-patterns.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/_zips/twentytwentyfour-starter-template-patterns.zip -------------------------------------------------------------------------------- /example-block-style-js/.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/.wp-env.json -------------------------------------------------------------------------------- /example-block-style-js/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/LICENSE.md -------------------------------------------------------------------------------- /example-block-style-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/README.md -------------------------------------------------------------------------------- /example-block-style-js/_playground/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/_playground/blueprint.json -------------------------------------------------------------------------------- /example-block-style-js/_playground/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/_playground/export.xml -------------------------------------------------------------------------------- /example-block-style-js/assets/js/block-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/assets/js/block-styles.js -------------------------------------------------------------------------------- /example-block-style-js/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/functions.php -------------------------------------------------------------------------------- /example-block-style-js/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/screenshot.png -------------------------------------------------------------------------------- /example-block-style-js/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-js/style.css -------------------------------------------------------------------------------- /example-block-style-php/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/LICENSE.md -------------------------------------------------------------------------------- /example-block-style-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/README.md -------------------------------------------------------------------------------- /example-block-style-php/_playground/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/_playground/blueprint.json -------------------------------------------------------------------------------- /example-block-style-php/_playground/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/_playground/export.xml -------------------------------------------------------------------------------- /example-block-style-php/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/functions.php -------------------------------------------------------------------------------- /example-block-style-php/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/screenshot.png -------------------------------------------------------------------------------- /example-block-style-php/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-style-php/style.css -------------------------------------------------------------------------------- /example-block-stylesheet/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/LICENSE.md -------------------------------------------------------------------------------- /example-block-stylesheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/README.md -------------------------------------------------------------------------------- /example-block-stylesheet/assets/css/blocks/core-image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/assets/css/blocks/core-image.css -------------------------------------------------------------------------------- /example-block-stylesheet/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/functions.php -------------------------------------------------------------------------------- /example-block-stylesheet/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/screenshot.png -------------------------------------------------------------------------------- /example-block-stylesheet/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-stylesheet/style.css -------------------------------------------------------------------------------- /example-block-variation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/LICENSE.md -------------------------------------------------------------------------------- /example-block-variation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/README.md -------------------------------------------------------------------------------- /example-block-variation/assets/js/block-variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/assets/js/block-variations.js -------------------------------------------------------------------------------- /example-block-variation/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/functions.php -------------------------------------------------------------------------------- /example-block-variation/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/screenshot.png -------------------------------------------------------------------------------- /example-block-variation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-block-variation/style.css -------------------------------------------------------------------------------- /example-build-process/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/LICENSE.md -------------------------------------------------------------------------------- /example-build-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/README.md -------------------------------------------------------------------------------- /example-build-process/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/functions.php -------------------------------------------------------------------------------- /example-build-process/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/package-lock.json -------------------------------------------------------------------------------- /example-build-process/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/package.json -------------------------------------------------------------------------------- /example-build-process/public/css/editor.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/public/css/editor.asset.php -------------------------------------------------------------------------------- /example-build-process/public/css/editor.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example-build-process/public/css/screen.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/public/css/screen.asset.php -------------------------------------------------------------------------------- /example-build-process/public/css/screen.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example-build-process/public/js/editor.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/public/js/editor.asset.php -------------------------------------------------------------------------------- /example-build-process/public/js/editor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-build-process/resources/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/resources/js/editor.js -------------------------------------------------------------------------------- /example-build-process/resources/scss/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/resources/scss/editor.scss -------------------------------------------------------------------------------- /example-build-process/resources/scss/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/resources/scss/screen.scss -------------------------------------------------------------------------------- /example-build-process/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/screenshot.png -------------------------------------------------------------------------------- /example-build-process/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/style.css -------------------------------------------------------------------------------- /example-build-process/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-build-process/webpack.config.js -------------------------------------------------------------------------------- /example-locked-pattern/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-locked-pattern/LICENSE.md -------------------------------------------------------------------------------- /example-locked-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-locked-pattern/README.md -------------------------------------------------------------------------------- /example-locked-pattern/patterns/custom-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-locked-pattern/patterns/custom-event.php -------------------------------------------------------------------------------- /example-locked-pattern/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-locked-pattern/screenshot.png -------------------------------------------------------------------------------- /example-locked-pattern/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-locked-pattern/style.css -------------------------------------------------------------------------------- /example-template-part-area/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/LICENSE.md -------------------------------------------------------------------------------- /example-template-part-area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/README.md -------------------------------------------------------------------------------- /example-template-part-area/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/functions.php -------------------------------------------------------------------------------- /example-template-part-area/parts/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/parts/footer.html -------------------------------------------------------------------------------- /example-template-part-area/parts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/parts/header.html -------------------------------------------------------------------------------- /example-template-part-area/parts/post-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/parts/post-meta.html -------------------------------------------------------------------------------- /example-template-part-area/parts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/parts/sidebar.html -------------------------------------------------------------------------------- /example-template-part-area/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/screenshot.png -------------------------------------------------------------------------------- /example-template-part-area/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/style.css -------------------------------------------------------------------------------- /example-template-part-area/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/example-template-part-area/theme.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/package.json -------------------------------------------------------------------------------- /twentytwentyfour-starter-content-patterns/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-content-patterns/LICENSE.md -------------------------------------------------------------------------------- /twentytwentyfour-starter-content-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-content-patterns/README.md -------------------------------------------------------------------------------- /twentytwentyfour-starter-content-patterns/patterns/event-announcement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-content-patterns/patterns/event-announcement.php -------------------------------------------------------------------------------- /twentytwentyfour-starter-content-patterns/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-content-patterns/screenshot.png -------------------------------------------------------------------------------- /twentytwentyfour-starter-content-patterns/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-content-patterns/style.css -------------------------------------------------------------------------------- /twentytwentyfour-starter-template-patterns/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-template-patterns/LICENSE.md -------------------------------------------------------------------------------- /twentytwentyfour-starter-template-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-template-patterns/README.md -------------------------------------------------------------------------------- /twentytwentyfour-starter-template-patterns/patterns/template-archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-template-patterns/patterns/template-archive.php -------------------------------------------------------------------------------- /twentytwentyfour-starter-template-patterns/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-template-patterns/screenshot.png -------------------------------------------------------------------------------- /twentytwentyfour-starter-template-patterns/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/block-theme-examples/HEAD/twentytwentyfour-starter-template-patterns/style.css --------------------------------------------------------------------------------