├── .csscomb.json ├── .gitignore ├── 404.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── fonts │ ├── asap-v7-latin-500.woff │ ├── asap-v7-latin-500.woff2 │ ├── asap-v7-latin-700.woff │ ├── asap-v7-latin-700.woff2 │ ├── asap-v7-latin-regular.woff │ └── asap-v7-latin-regular.woff2 ├── images │ ├── logo.svg │ ├── logo_minimal.svg │ ├── logo_simplified.svg │ └── wpseed.png ├── scripts │ ├── essentials.js │ ├── functions.js │ ├── modernizr-config.json │ └── modernizr.js └── styles │ ├── bundle.scss │ ├── compatibility.scss │ ├── content.scss │ ├── essentials.scss │ ├── fonts.scss │ ├── general.scss │ ├── structure.scss │ └── vars.scss ├── comment-guide.php ├── footer.php ├── functions.php ├── functions ├── functions-custom.php ├── functions-dev.php ├── functions-gutenberg.php ├── functions-settings.php └── functions-setup.php ├── gulp-vendors.json ├── gulpfile.js ├── header.php ├── home.php ├── index.php ├── package.json ├── page.php ├── screenshot.png ├── single.php ├── style.css └── templates ├── blocks └── block-employees.php ├── wp-home.php ├── wp-page.php └── wp-single.php /.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/.csscomb.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/404.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-500.woff -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-500.woff2 -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-700.woff -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-700.woff2 -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-regular.woff -------------------------------------------------------------------------------- /assets/fonts/asap-v7-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/fonts/asap-v7-latin-regular.woff2 -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/logo_minimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/images/logo_minimal.svg -------------------------------------------------------------------------------- /assets/images/logo_simplified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/images/logo_simplified.svg -------------------------------------------------------------------------------- /assets/images/wpseed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/images/wpseed.png -------------------------------------------------------------------------------- /assets/scripts/essentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/scripts/essentials.js -------------------------------------------------------------------------------- /assets/scripts/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/scripts/functions.js -------------------------------------------------------------------------------- /assets/scripts/modernizr-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/scripts/modernizr-config.json -------------------------------------------------------------------------------- /assets/scripts/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/scripts/modernizr.js -------------------------------------------------------------------------------- /assets/styles/bundle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/bundle.scss -------------------------------------------------------------------------------- /assets/styles/compatibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/compatibility.scss -------------------------------------------------------------------------------- /assets/styles/content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/content.scss -------------------------------------------------------------------------------- /assets/styles/essentials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/essentials.scss -------------------------------------------------------------------------------- /assets/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/fonts.scss -------------------------------------------------------------------------------- /assets/styles/general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/general.scss -------------------------------------------------------------------------------- /assets/styles/structure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/structure.scss -------------------------------------------------------------------------------- /assets/styles/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/assets/styles/vars.scss -------------------------------------------------------------------------------- /comment-guide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/comment-guide.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions.php -------------------------------------------------------------------------------- /functions/functions-custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions/functions-custom.php -------------------------------------------------------------------------------- /functions/functions-dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions/functions-dev.php -------------------------------------------------------------------------------- /functions/functions-gutenberg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions/functions-gutenberg.php -------------------------------------------------------------------------------- /functions/functions-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions/functions-settings.php -------------------------------------------------------------------------------- /functions/functions-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/functions/functions-setup.php -------------------------------------------------------------------------------- /gulp-vendors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/gulp-vendors.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/gulpfile.js -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/header.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/home.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/package.json -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/page.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/screenshot.png -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/style.css -------------------------------------------------------------------------------- /templates/blocks/block-employees.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/templates/blocks/block-employees.php -------------------------------------------------------------------------------- /templates/wp-home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/templates/wp-home.php -------------------------------------------------------------------------------- /templates/wp-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/templates/wp-page.php -------------------------------------------------------------------------------- /templates/wp-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flurinduerst/WPSeed/HEAD/templates/wp-single.php --------------------------------------------------------------------------------