├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── composer.json ├── docs └── example-config.php ├── phpcs.xml.dist └── src ├── BreadcrumbArgs.php ├── CustomLogo.php ├── FooterCreds.php ├── GenesisThemeToolkit.php ├── Layouts.php ├── Templates.php ├── ThemeSettings.php └── WidgetAreas.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/composer.json -------------------------------------------------------------------------------- /docs/example-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/docs/example-config.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /src/BreadcrumbArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/BreadcrumbArgs.php -------------------------------------------------------------------------------- /src/CustomLogo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/CustomLogo.php -------------------------------------------------------------------------------- /src/FooterCreds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/FooterCreds.php -------------------------------------------------------------------------------- /src/GenesisThemeToolkit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/GenesisThemeToolkit.php -------------------------------------------------------------------------------- /src/Layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/Layouts.php -------------------------------------------------------------------------------- /src/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/Templates.php -------------------------------------------------------------------------------- /src/ThemeSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/ThemeSettings.php -------------------------------------------------------------------------------- /src/WidgetAreas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamajo/genesis-theme-toolkit/HEAD/src/WidgetAreas.php --------------------------------------------------------------------------------