Currently using Bootstrap v4.0.0-beta
JBST4 is a blank WordPress theme built with Bootstrap 4.
JBST4 is intended to be used as a starter theme, not as a parent or theme framework. In almost all instances we would recommend you just hack away and customise JBST4 itself.
JBST4 requires Node.js v6.9.x or newer. This doesn't mean you need to understand Node (or even Gulp) - it's just the steps we need to take to make sure all of our development tools are installed.
$ cd my-wordpress-folder/wp-content/themes/
$ git clone https://github.com/JeremyEnglert/JBST4.git
$ cd JBST4
$ npm install
At this point, JBST4 should be installed and fully running on your local machine. If you prefer to install the theme manually, that will work as well - just be sure to run npm install
after manually moving the files into the /themes/
directory.
$ npm run watch
- Watches for changes in the
assets/styles/scss
directory. When a change is made the SCSS files are compiled, concatenated with Foundation files and saved to the/styles
directory. Sourcemaps will be created. - Watches for changes in the
assets/scripts/js
directory. When a change is made the JS files are compiled, concatenated with Foundation JS files and saved to the/scripts
directory. Sourcemaps will be created. - Watches for changes in the
assets/images
directory. When a change is made the image files are optimized and saved over the original image.
$ npm run browsersync
This will watch the same files as npm run watch
, but utilizes browsersync for live reloading and style injection. Be sure to update the URL
variable in the gulpfile.js
to your local install URL.
$ npm run build
Compiles and minifies all scripts and styles.
$ npm run styles
- to compile all SCSS files in theassets/styles/scss
directory.$ npm run scripts
- to compile all JS files in theassets/scripts/js
directory.$ npm run images
- to optimize all image files in theassets/images
directory.
style.css
- this file is never actually loaded, however, this is where you set your theme name and is required by WordPressassets/styles/scss/style.scss
- import all of your styles here. If you create an additional SCSS file, be sure to import it here.assets/styles/scss/_main.scss
- place all of your custom styles here.assets/styles/scss/_variables.scss
- overwrite Bootstrap's variables here.assets/styles/scss/login.scss
- place custom login styles here. This will generate it's own stylesheet.
assets/scripts/js/
- place your custom scripts here. Each .JS file will be compiled and concatenated when the build process is ran.
assets/images/
- place your theme images here. Each image will be optimized when the build process is ran.
The Masonry template organizes your post into Masonry-like columns with just CSS by wrapping them.
The Offcanvas menu temlate contains a toggleable off-canvas navigation menu for small viewports.
- You can find the CSS only version at https://github.com/bassjobsen/jbst-4
- You can find CSS only version with flexbox support at https://github.com/bassjobsen/jbst-4-css-flexbox