client/gulpfile.js
changeset 83 6a169ef52314
parent 78 aaffa46a2b79
child 88 2db951a4a04c
--- 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: '<script src="{% static \'ammico/js/%s\' %}"></script>'
-    	},
-    	css: {
-    		src: ['lib.css', 'app.css'],
-    		tpl: '<link rel="stylesheet" type="text/css" href="{% static \'ammico/css/%s\' %}"/>'
-    	},
-    	imgLogo: {
-    		src: 'ammico_logo_small.png',
-    		tpl: '<img src="{% static \'ammico/img/%s\' %}">'
-    	},
-    	imgFooter: {
-    		src: 'logo_IRI_footer.png',
-    		tpl: '<img src="{% static \'ammico/img/%s\' %}" alt="Logo IRI" />'
-    	}
-    }))
+	    .pipe(htmlreplace({
+	    	django: '{% load static %}',
+	    	js:{
+	    		src: ['lib.js', 'templates.js', 'app.js'],
+	    		tpl: '<script src="{% static \'ammico/js/%s\' %}"></script>'
+	    	},
+	    	css: {
+	    		src: ['lib.css', 'app.css'],
+	    		tpl: '<link rel="stylesheet" type="text/css" href="{% static \'ammico/css/%s\' %}"/>'
+	    	},
+	    	imgLogo: {
+	    		src: 'ammico_logo_small.png',
+	    		tpl: '<img src="{% static \'ammico/img/%s\' %}">'
+	    	},
+	    	imgFooter: {
+	    		src: 'logo_IRI_footer.png',
+	    		tpl: '<img src="{% static \'ammico/img/%s\' %}" alt="Logo IRI" />'
+	    	}
+	    }))
     .pipe(gulp.dest('./../server/ammico/templates'));
 });