A single page with every Bootstrip component.
Column can be used to create a responsive grid
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Muted text
Display headers stand out more than standard headers, and are normally used at the page level
body text
Lists are ideal for simple collections of data
Lists can be compacted for denser data
Lists can contain complex content with their own layout system
Use tables for more fine-tuned control of data layout
# | First | Last | Handle |
---|---|---|---|
1 | Lorem | Ipsum | Something |
2 | Lorem | Ipsum | Something |
3 | Lorem | Ipsum | Something |
4 | Lorem | Ipsum | Something |
5 | Lorem | Ipsum | Something |
6 | Lorem | Ipsum | Something |
7 | Lorem | Ipsum | Something |
8 | Lorem | Ipsum | Something |
9 | Lorem | Ipsum | Something |
# | First | Last | Handle |
---|---|---|---|
1 | Lorem | Ipsum | Something |
2 | Lorem | Ipsum | Something |
3 | Lorem | Ipsum | Something |
4 | Lorem | Ipsum | Something |
5 | Lorem | Ipsum | Something |
6 | Lorem | Ipsum | Something |
7 | Lorem | Ipsum | Something |
8 | Lorem | Ipsum | Something |
9 | Lorem | Ipsum | Something |
Some quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go somewheremodule.exports = { async watch(){ // wipe and set up required paths const workPath = path.join(cwd, 'web') fs.ensureDirSync(workPath) // start watching sass files const watcher = chokidar.watch([ path.join('./hbs/**/*.hbs'), path.join('./modules/**/*.hbs'), path.join('./data/**/*') ], { persistent: true, usePolling: true, ignoreInitial: true }) watcher .on('add', async file => { await this.renderAll(file) }) .on('change', async file =>{ await this.renderAll(file) }) .on('unlink', async file =>{ await this.renderAll(file) }) await this.renderAll() } }