mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-13 02:53:44 +00:00
update
This commit is contained in:
@@ -6,10 +6,6 @@
|
|||||||
<p>I am a very simple card. I am good at containing small bits of information.
|
<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>
|
I am convenient because I require little markup to use effectively.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -24,10 +24,6 @@
|
|||||||
<p>I am a very simple card. I am good at containing small bits of information.
|
<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>
|
I am convenient because I require little markup to use effectively.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,10 +6,6 @@
|
|||||||
<p>I am a very simple card. I am good at containing small bits of information.
|
<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>
|
I am convenient because I require little markup to use effectively.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
<a href="#">This is a link</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+3
-3
@@ -11,7 +11,7 @@ var paths = {
|
|||||||
'css':'client/**/*.css',
|
'css':'client/**/*.css',
|
||||||
'siteJS':'client/*.js',
|
'siteJS':'client/*.js',
|
||||||
'siteCSS':'client/*.css',
|
'siteCSS':'client/*.css',
|
||||||
'siteHTML':'client/index.html'
|
'siteHTML':'client/*.html'
|
||||||
};
|
};
|
||||||
|
|
||||||
gulp.task('scripts', function(callback){
|
gulp.task('scripts', function(callback){
|
||||||
@@ -43,7 +43,7 @@ gulp.task('pageHTML', function(cb){
|
|||||||
runSequence('componentHTML', 'index', cb);
|
runSequence('componentHTML', 'index', cb);
|
||||||
})
|
})
|
||||||
|
|
||||||
gulp.task('index', function(){
|
gulp.task('siteHTML', function(){
|
||||||
return gulp.src(paths.siteHTML).pipe(fileinclude({
|
return gulp.src(paths.siteHTML).pipe(fileinclude({
|
||||||
prefix: '@@',
|
prefix: '@@',
|
||||||
basepath: './build'
|
basepath: './build'
|
||||||
@@ -54,7 +54,7 @@ gulp.task('index', function(){
|
|||||||
gulp.task('watch', function(){
|
gulp.task('watch', function(){
|
||||||
gulp.watch([paths.componentJS, paths.componentHTML], ['scripts', 'pageHTML']);
|
gulp.watch([paths.componentJS, paths.componentHTML], ['scripts', 'pageHTML']);
|
||||||
gulp.watch([paths.siteJS, paths.componentJS], ['scripts']);
|
gulp.watch([paths.siteJS, paths.componentJS], ['scripts']);
|
||||||
gulp.watch([paths.siteHTML], ['index']);
|
gulp.watch([paths.siteHTML], ['siteHTML']);
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('default', function() {
|
gulp.task('default', function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user