Make New Jekyll Site Demo
Includes the following extras
- Optimized Modernizr build with customizr.
- Vulcanized Polymer paper elements.
- Load Noto and Inconsolata fonts with Web Font Loader.
- Code syntax highlighting with Prism.
- Automatic linting through gulp with the JavaScript Standard Style, Sass Lint, and HTMLHint.
- Deploy to GitHub pages locally or from Travis CI.
- Optimized deployment build with HTMLMinifier and imagemin.
Express server example with Prism highlighting
var express = require('express')
var app = express()
app.get('/', function (req, res) {
res.send('Hello World!')
})
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})