gitextract_0yipqz8n/ ├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .nvmrc ├── .stylelintrc ├── LICENSE.md ├── README.md ├── assets/ │ ├── css/ │ │ ├── admin/ │ │ │ ├── admin-style.css │ │ │ └── example-block-1.css │ │ ├── blocks/ │ │ │ ├── example-block-1.css │ │ │ └── index.css │ │ ├── frontend/ │ │ │ ├── base/ │ │ │ │ ├── index.css │ │ │ │ ├── prefers-reduced-motion.css │ │ │ │ └── wordpress.css │ │ │ ├── components/ │ │ │ │ └── index.css │ │ │ ├── editor-style.css │ │ │ ├── global/ │ │ │ │ ├── colors.css │ │ │ │ ├── index.css │ │ │ │ └── media-queries.css │ │ │ ├── layout/ │ │ │ │ └── index.css │ │ │ ├── style.css │ │ │ └── templates/ │ │ │ └── index.css │ │ ├── shared/ │ │ │ └── shared-style.css │ │ └── styleguide/ │ │ └── styleguide.css │ ├── fonts/ │ │ └── font-name/ │ │ └── .gitkeep │ ├── images/ │ │ └── .gitkeep │ ├── js/ │ │ ├── admin/ │ │ │ └── admin.js │ │ ├── blocks/ │ │ │ ├── blocks.js │ │ │ └── example-block-1.js │ │ ├── frontend/ │ │ │ ├── components/ │ │ │ │ └── .gitkeep │ │ │ └── frontend.js │ │ ├── shared/ │ │ │ └── shared.js │ │ └── styleguide/ │ │ ├── styleguide.js │ │ └── uikitsection.js │ └── svg/ │ └── .gitkeep ├── babel.config.js ├── composer.json ├── config/ │ ├── webpack.config.common.js │ ├── webpack.config.dev.js │ ├── webpack.config.prod.js │ └── webpack.settings.js ├── footer.php ├── functions.php ├── header.php ├── includes/ │ ├── blocks/ │ │ ├── blocks-editor.js │ │ └── example-block-1/ │ │ └── index.js │ ├── blocks.php │ ├── classes/ │ │ └── .gitkeep │ ├── core.php │ ├── overrides.php │ ├── template-tags.php │ └── utility.php ├── index.php ├── languages/ │ └── TenUpScaffold.pot ├── manifest.json ├── package.json ├── partials/ │ └── .gitkeep ├── phpcs.xml ├── postcss.config.js ├── search.php ├── searchform.php ├── style.css ├── templates/ │ └── page-styleguide.php ├── tests/ │ ├── accessibility/ │ │ └── compliance/ │ │ └── pa11y.js │ ├── js/ │ │ └── .gitkeep │ ├── php/ │ │ └── .gitkeep │ └── wpa/ │ ├── FrontendTest.php │ └── StandardTest.php └── wpacceptance.json