diff -r 6a5e84bf859c -r 6a169ef52314 client/gulpfile.js --- a/client/gulpfile.js Wed Apr 08 17:02:24 2015 +0200 +++ b/client/gulpfile.js Wed Apr 08 17:02:32 2015 +0200 @@ -127,25 +127,25 @@ gulp.src('./build/*.css') .pipe(gulp.dest('./../server/ammico/static/ammico/css')); gulp.src('./app/index.html') - .pipe(htmlreplace({ - django: '{% load static %}', - js:{ - src: ['lib.js', 'templates.js', 'app.js'], - tpl: '' - }, - css: { - src: ['lib.css', 'app.css'], - tpl: '' - }, - imgLogo: { - src: 'ammico_logo_small.png', - tpl: '' - }, - imgFooter: { - src: 'logo_IRI_footer.png', - tpl: 'Logo IRI' - } - })) + .pipe(htmlreplace({ + django: '{% load static %}', + js:{ + src: ['lib.js', 'templates.js', 'app.js'], + tpl: '' + }, + css: { + src: ['lib.css', 'app.css'], + tpl: '' + }, + imgLogo: { + src: 'ammico_logo_small.png', + tpl: '' + }, + imgFooter: { + src: 'logo_IRI_footer.png', + tpl: 'Logo IRI' + } + })) .pipe(gulp.dest('./../server/ammico/templates')); });