├── .gitignore ├── comments.php ├── css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap-theme.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css └── bootstrap.min.css.map ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footer.php ├── functions.php ├── header.php ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js └── npm.js ├── readme.md └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/comments.php -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/js/npm.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/readme.md -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienb/Bootstrap-3-blank-wordpress-theme/HEAD/style.css --------------------------------------------------------------------------------