├── .gitignore ├── screenshot.png ├── images └── eco-chat.svg ├── languages ├── readme.txt └── susty-wp.pot ├── composer.json ├── menu.php ├── rtl.css ├── README.md ├── single.php ├── footer.php ├── template-parts ├── content-search.php ├── content-page.php ├── content-none.php └── content.php ├── page.php ├── inc ├── template-functions.php ├── jetpack.php ├── customizer.php ├── custom-header.php └── template-tags.php ├── index.php ├── archive.php ├── readme.txt ├── search.php ├── 404.php ├── comments.php ├── header.php ├── composer.lock ├── phpcs.xml.dist ├── functions.php ├── LICENSE └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | vendor/ 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklenox/susty/HEAD/screenshot.png -------------------------------------------------------------------------------- /images/eco-chat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/readme.txt: -------------------------------------------------------------------------------- 1 | Place your theme language files in this directory. 2 | 3 | Please visit the following links to learn more about translating WordPress themes: 4 | 5 | https://make.wordpress.org/polyglots/teams/ 6 | https://developer.wordpress.org/themes/functionality/localization/ 7 | https://developer.wordpress.org/reference/functions/load_theme_textdomain/ 8 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jacklenox/susty", 3 | "type": "wordpress-theme", 4 | "license": "GPL-2.0-or-later", 5 | "description": "WordPress starter theme with a modern development workflow", 6 | "homepage": "https://sustywp.com/", 7 | "keywords": ["wordpress"], 8 | "require": { 9 | "composer/installers": "~1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /menu.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | 15 | 12 | 13 |