├── .csscomb.json ├── .gitignore ├── 404.php ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── archive.php ├── comments.php ├── content-none.php ├── content-page.php ├── content-single.php ├── content.php ├── footer.php ├── functions.php ├── header.php ├── inc ├── custom-header.php ├── customizer.php ├── extras.php ├── jetpack.php ├── template-tags.php └── wpcom.php ├── index.php ├── js ├── combined.min.js ├── customizer.js ├── navigation.js └── skip-link-focus-fix.js ├── languages ├── _s.pot └── readme.txt ├── layouts ├── content-sidebar.css └── sidebar-content.css ├── package.json ├── page.php ├── rtl.css ├── screenshot.png ├── scss └── style.scss ├── search.php ├── sidebar.php ├── single.php └── style.css /.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/.csscomb.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | .DS_Store 3 | Icon 4 | 5 | # Node.js / Grunt 6 | node_modules 7 | .sass-cache 8 | npm-debug.log -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/404.php -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/README.md -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/archive.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/comments.php -------------------------------------------------------------------------------- /content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/content-none.php -------------------------------------------------------------------------------- /content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/content-page.php -------------------------------------------------------------------------------- /content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/content-single.php -------------------------------------------------------------------------------- /content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/content.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/header.php -------------------------------------------------------------------------------- /inc/custom-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/custom-header.php -------------------------------------------------------------------------------- /inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/customizer.php -------------------------------------------------------------------------------- /inc/extras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/extras.php -------------------------------------------------------------------------------- /inc/jetpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/jetpack.php -------------------------------------------------------------------------------- /inc/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/template-tags.php -------------------------------------------------------------------------------- /inc/wpcom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/inc/wpcom.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/index.php -------------------------------------------------------------------------------- /js/combined.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/js/combined.min.js -------------------------------------------------------------------------------- /js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/js/customizer.js -------------------------------------------------------------------------------- /js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/js/navigation.js -------------------------------------------------------------------------------- /js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/js/skip-link-focus-fix.js -------------------------------------------------------------------------------- /languages/_s.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/languages/_s.pot -------------------------------------------------------------------------------- /languages/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/languages/readme.txt -------------------------------------------------------------------------------- /layouts/content-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/layouts/content-sidebar.css -------------------------------------------------------------------------------- /layouts/sidebar-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/layouts/sidebar-content.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/package.json -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/page.php -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/rtl.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/screenshot.png -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/scss/style.scss -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/search.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/sidebar.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinsays/underscores-grunt/HEAD/style.css --------------------------------------------------------------------------------