├── .editorconfig ├── .gitignore ├── Gulpfile.js ├── Readme.md ├── package.json └── src ├── img └── fast-nunjucks.png ├── js └── main.js ├── styl └── main.styl └── templates ├── includes ├── base.html ├── footer.html └── header.html └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/.gitignore -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/package.json -------------------------------------------------------------------------------- /src/img/fast-nunjucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/img/fast-nunjucks.png -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('it works!'); -------------------------------------------------------------------------------- /src/styl/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/styl/main.styl -------------------------------------------------------------------------------- /src/templates/includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/templates/includes/base.html -------------------------------------------------------------------------------- /src/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/templates/includes/footer.html -------------------------------------------------------------------------------- /src/templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/templates/includes/header.html -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/Fast-nunjucks/HEAD/src/templates/index.html --------------------------------------------------------------------------------