From 8f11f5909eb841d8b42d3f61c0c59a780dce585f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 14 Dec 2018 20:49:30 +0100 Subject: use asset versioning --- templates/layouts/default.html.ep | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'templates/layouts/default.html.ep') diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 163955b..3edb715 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -8,28 +8,28 @@ % } - - %= stylesheet '/static/default.css' - %= stylesheet '/static/jquery-ui.min.css' + % my $av = 'v1'; # asset version + %= stylesheet "/static/${av}/default.css" + %= stylesheet "/static/${av}/jquery-ui.min.css" % my $force_mobile = param('force_mobile') // -1; % if ($force_mobile == 1 or ($self->browser->mobile and $force_mobile != 0)) { - %= stylesheet '/static/mobile.css' + %= stylesheet "/static/${av}/mobile.css" % } %if (stash('load_marquee')) { %= javascript '/static/jquery-1.10.2.min.js' - %= javascript '/static/jquery-ui.min.js' - %= javascript '/static/dbf.min.js' - %= javascript '/static/marquee.min.js' + %= javascript "/static/${av}/jquery-ui.min.js" + %= javascript "/static/${av}/dbf.min.js" + %= javascript "/static/${av}/marquee.min.js" %= javascript begin $(function () { $('marquee').marquee() }); % end % } else { %= javascript '/static/jquery-1.10.2.min.js', defer => undef - %= javascript '/static/jquery-ui.min.js', defer => undef - %= javascript '/static/dbf.min.js', defer => undef + %= javascript "/static/${av}/jquery-ui.min.js", defer => undef + %= javascript "/static/${av}/dbf.min.js", defer => undef % } % if (stash('with_geolocation')) { - %= javascript '/static/geolocation.min.js', defer => undef + %= javascript "/static/${av}/geolocation.min.js", defer => undef % }