12 | 13 |
14 |15 | 16 |
17 | 18 |├── .browserslistrc ├── .gitignore ├── .travis.yml ├── 404.php ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── archive.php ├── comments.php ├── default_header.jpg ├── docker-compose.yml ├── footer.php ├── functions.php ├── header.php ├── index.php ├── languages ├── fr_FR.mo ├── fr_FR.po ├── simple-bootstrap.mo └── simple-bootstrap.po ├── package-lock.json ├── package.json ├── page-no-sidebar.php ├── page.php ├── readme.txt ├── screenshot.png ├── scss ├── bootstrap_variables.scss ├── customization.scss ├── style.scss ├── theme_customization.scss └── wp.scss ├── search.php ├── searchform.php ├── sidebar-left.php ├── sidebar-right.php └── single.php /.browserslistrc: -------------------------------------------------------------------------------- 1 | >= 1% 2 | last 1 major version 3 | not dead 4 | Chrome >= 45 5 | Firefox >= 38 6 | Edge >= 12 7 | Explorer >= 10 8 | iOS >= 9 9 | Safari >= 9 10 | Android >= 4.4 11 | Opera >= 30 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX specific stuff 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | Icon 6 | # Thumbnails 7 | ._* 8 | # Files that might appear on external disk 9 | .Spotlight-V100 10 | .Trashes 11 | 12 | 13 | # WINDOWS specific stuff 14 | # Windows image file caches 15 | Thumbs.db 16 | ehthumbs.db 17 | # Folder config file 18 | Desktop.ini 19 | # Recycle Bin used on file shares 20 | $RECYCLE.BIN/ 21 | 22 | app.min.js 23 | codekit-config.json 24 | node_modules 25 | style.css 26 | style.css.map 27 | fonts 28 | simple-bootstrap.zip 29 | js 30 | .sass-cache 31 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | 3 | language: node_js 4 | node_js: 5 | - node 6 | before_script: 7 | - npm run build 8 | before_deploy: 9 | - npm run dist 10 | - mv simple-bootstrap.zip simple-bootstrap-$TRAVIS_TAG.zip 11 | deploy: 12 | provider: releases 13 | api_key: "$GITHUB_TOKEN" 14 | file: "simple-bootstrap-$TRAVIS_TAG.zip" 15 | skip_cleanup: true 16 | on: 17 | tags: true -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
12 | 13 |
14 |15 | 16 |
17 | 18 |
8 |
9 |