This commit is contained in:
Joe Reeve
2015-11-07 13:14:51 +00:00
parent 88e84ef4d7
commit bb8afbdc23
4 changed files with 3 additions and 15 deletions
-4
View File
@@ -6,10 +6,6 @@
<p>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.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
-4
View File
@@ -24,10 +24,6 @@
<p>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.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
-4
View File
@@ -6,10 +6,6 @@
<p>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.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
+3 -3
View File
@@ -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() {