commit 60e031b0b701f549c97c309ce876303934bf3f51
parent 8f82cbae5c306b9d7f0428c667faca7fd3b6d525
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Mon, 15 Sep 2014 23:03:23 +0400
Move index.html and 404.html to the ./src/pages folder. Closes #6
Diffstat:
3 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gulpfile.js b/gulpfile.js
@@ -85,7 +85,7 @@ gulp.task('images', function () {
// HTML pages
gulp.task('pages', function () {
- src.pages = 'src/**/*.html';
+ src.pages = 'src/pages/**/*.html';
return gulp.src(src.pages)
.pipe($.if(RELEASE, $.htmlmin({
removeComments: true,
diff --git a/src/404.html b/src/pages/404.html
diff --git a/src/index.html b/src/pages/index.html