ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

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:
Mgulpfile.js | 2+-
Rsrc/404.html -> src/pages/404.html | 0
Rsrc/index.html -> src/pages/index.html | 0
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