<!-- tpl.html -->
@@include('_link.html', 'data.json')
<!-- link.html -->
<a href="#">@@link-text</a>
<!-- data.json -->
[
{ "link-text": "My post title" }
]
$ gulp demo
[08:40:32] Using gulpfile D:\program ssd\openserver\domains\_webdev\gulpfile.js
[08:40:32] Starting 'demo'...
/** demoTask__START.......
-start of the first task
-start of the second task
-start of the third task
..demoTask__END **/
[08:40:32] Finished 'demo' after 5.33 ms
console.log('START');
function OPTcompileSCSS() {
return src('src/assets/scss/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(dest('build/test/assets/css/'));
}
console.log('END');