danielrohers / quickness-bootstrap

Bootstrap for static site with gulp + pug + minify + uglify + image optimization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quickness-bootstrap

Bootstrap for static site with gulp + pug + stylus + uglify + image optimization

Build Status devDependency Status

Requirements

Install NodeJS

Structure

|-- project
|   |-- _includes <-- Include files - https://pugjs.org/language/includes.html
|   |   |-- footer.pug
|   |   |-- navbar.pug
|   |-- _layouts <-- Layout files - https://pugjs.org/language/extends.html
|   |   |-- default.pug
|   |-- _mixins <-- Mixin files - https://pugjs.org/language/mixins.html
|   |-- _site <-- Your pug files to site
|   |   |-- contact
|   |   |   |-- index.pug
|   |   |-- features
|   |   |   |-- index.pug
|   |   |-- index.pug
|   |-- assets
|   |   |-- images
|   |   |   |-- example.png
|   |   |-- javascripts
|   |   |   |-- example.js
|   |   |-- stylesheets
|   |   |   |-- example.css
|   |-- dist <-- Folder with compiled files
|   |-- .editorconfig <-- Indentation  styles - http://editorconfig.org
|   |-- .gitignore
|   |-- gulpfile.js
|   |-- package.json

Quick Start

The quickest way to get started with quickness is to utilize the executable quickness(1) to generate an application as shown below:

Create the app:

$ npm install -g quickness
$ quickness foo && cd foo

Install dependencies:

$ npm install

or

$ yarn

Development:

$ npm start

Compile files:

$ npm run deploy

or

$ gulp dist

Licence

Licence

About

Bootstrap for static site with gulp + pug + minify + uglify + image optimization

License:Other


Languages

Language:JavaScript 37.4%Language:HTML 31.6%Language:CSS 30.9%