diff --git a/build/components.html b/build/components.html
index 382f511..634812d 100644
--- a/build/components.html
+++ b/build/components.html
@@ -6,10 +6,6 @@
I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.
-
diff --git a/build/index.html b/build/index.html
index 71de7fe..02da021 100644
--- a/build/index.html
+++ b/build/index.html
@@ -24,10 +24,6 @@
I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.
-
diff --git a/client/components/home/home.html b/client/components/home/home.html
index f3ab6ca..2c594fa 100644
--- a/client/components/home/home.html
+++ b/client/components/home/home.html
@@ -6,10 +6,6 @@
I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.
-
diff --git a/gulpfile.js b/gulpfile.js
index 04041bb..a062b0e 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -11,7 +11,7 @@ var paths = {
'css':'client/**/*.css',
'siteJS':'client/*.js',
'siteCSS':'client/*.css',
- 'siteHTML':'client/index.html'
+ 'siteHTML':'client/*.html'
};
gulp.task('scripts', function(callback){
@@ -43,7 +43,7 @@ gulp.task('pageHTML', function(cb){
runSequence('componentHTML', 'index', cb);
})
-gulp.task('index', function(){
+gulp.task('siteHTML', function(){
return gulp.src(paths.siteHTML).pipe(fileinclude({
prefix: '@@',
basepath: './build'
@@ -54,7 +54,7 @@ gulp.task('index', function(){
gulp.task('watch', function(){
gulp.watch([paths.componentJS, paths.componentHTML], ['scripts', 'pageHTML']);
gulp.watch([paths.siteJS, paths.componentJS], ['scripts']);
- gulp.watch([paths.siteHTML], ['index']);
+ gulp.watch([paths.siteHTML], ['siteHTML']);
});
gulp.task('default', function() {