├── .gitignore ├── README.md ├── rename.json ├── root ├── .gitignore ├── .gruntjshintrc ├── .jshintrc ├── Gruntfile.js ├── assets │ ├── css │ │ ├── README.md │ │ ├── less │ │ │ └── theme.less │ │ ├── sass │ │ │ └── theme.scss │ │ └── src │ │ │ └── theme.css │ └── js │ │ ├── src │ │ └── theme.js │ │ └── vendor │ │ └── README.md ├── footer.php ├── functions.php ├── header.php ├── humans.txt ├── images │ ├── README.md │ └── src │ │ └── README.md ├── includes │ └── README.md ├── index.php ├── languages │ └── theme.pot ├── screenshot.png └── style.css └── template.js /.gitignore: -------------------------------------------------------------------------------- 1 | defaults.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/README.md -------------------------------------------------------------------------------- /rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/rename.json -------------------------------------------------------------------------------- /root/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /root/.gruntjshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/.gruntjshintrc -------------------------------------------------------------------------------- /root/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/.jshintrc -------------------------------------------------------------------------------- /root/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/Gruntfile.js -------------------------------------------------------------------------------- /root/assets/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/css/README.md -------------------------------------------------------------------------------- /root/assets/css/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/css/less/theme.less -------------------------------------------------------------------------------- /root/assets/css/sass/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/css/sass/theme.scss -------------------------------------------------------------------------------- /root/assets/css/src/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/css/src/theme.css -------------------------------------------------------------------------------- /root/assets/js/src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/js/src/theme.js -------------------------------------------------------------------------------- /root/assets/js/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/assets/js/vendor/README.md -------------------------------------------------------------------------------- /root/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/footer.php -------------------------------------------------------------------------------- /root/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/functions.php -------------------------------------------------------------------------------- /root/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/header.php -------------------------------------------------------------------------------- /root/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/humans.txt -------------------------------------------------------------------------------- /root/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/images/README.md -------------------------------------------------------------------------------- /root/images/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/images/src/README.md -------------------------------------------------------------------------------- /root/includes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/includes/README.md -------------------------------------------------------------------------------- /root/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/index.php -------------------------------------------------------------------------------- /root/languages/theme.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/languages/theme.pot -------------------------------------------------------------------------------- /root/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/screenshot.png -------------------------------------------------------------------------------- /root/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/root/style.css -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/grunt-wp-theme/HEAD/template.js --------------------------------------------------------------------------------