| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The Minimill project template is the best way to build static sites fast. With one command, build a static page using Gulp, Handlebars.js, and SCSS.
Other Versions: ES6, Minimill internal
All with one command from the terminal:
gulp serveInstall npm. Then, install gulp:
npm install -g gulp # May require `sudo`npm install # One time
gem install scss_lint # One time
gulp serveIf you want to use this repo for your next project, make sure to make the following changes:
An overview of Gulp commands available:
Builds the site into the dist directory. This includes:
This is used for distributing an optimized version of the site (for deployment). It includes everything from gulp build as well as:
Watchs for changes in local files and rebuilds parts of the site as necessary, into the dist directory.
Runs gulp watch in the background, and serves the dist directory at localhost:3000 with automatic reloading using Browsersync.
├── Gulpfile.js # Controls Gulp, used for building the website
├── README.md # This file
├── data.yml # Metadata associated with the site.
├── dist/ # Gulp builds the static site into this directory
├── package.json # Dependencies
└── src/ # All source code
├── font/ # Font files
├── img/ # Images and SVGs
├── js/ # Javascript libraries and scripts
├── partials/ # Handlebars HTML partials that are included / extended
├── sass/ # Stylesheets
└── templates/ # Handlebars HTML files, one per page on the site.| Back | FazBrowse Home | New Git URL |