├── .gitignore ├── CHANGELOG.en-US.md ├── data.json ├── gulpfile.js ├── package.json ├── readme.md └── src ├── css ├── .gitkeep ├── custom.css └── slick.css ├── fonts ├── .gitkeep ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images └── .gitkeep ├── js ├── .gitignore ├── custom.js └── src │ └── .gitkeep ├── sass ├── .gitkeep └── style.scss ├── svg └── .gitkeep └── views ├── layouts └── layout.nunjucks ├── pages └── index.nunjucks └── partials ├── header.nunjucks └── socialheader.nunjucks /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/CHANGELOG.en-US.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "testData":"ok" 3 | } -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/readme.md -------------------------------------------------------------------------------- /src/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | ... 3 | */ -------------------------------------------------------------------------------- /src/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/css/slick.css -------------------------------------------------------------------------------- /src/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/.gitignore: -------------------------------------------------------------------------------- 1 | build.js -------------------------------------------------------------------------------- /src/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/js/custom.js -------------------------------------------------------------------------------- /src/js/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sass/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/sass/style.scss -------------------------------------------------------------------------------- /src/svg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/layouts/layout.nunjucks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/views/layouts/layout.nunjucks -------------------------------------------------------------------------------- /src/views/pages/index.nunjucks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/views/pages/index.nunjucks -------------------------------------------------------------------------------- /src/views/partials/header.nunjucks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/partials/socialheader.nunjucks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Projekod/GulpScaffold/HEAD/src/views/partials/socialheader.nunjucks --------------------------------------------------------------------------------