aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/resources/templates
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-03-27 22:13:16 +0300
committerGravatar Vitaly Takmazov2018-03-27 22:22:35 +0300
commit13237626f3956d93a91a94bee6fee6aa86134a06 (patch)
tree50634fdfb2fddc924d60be18886184f49b2f7115 /juick-www/src/main/resources/templates
parentcc551432bf80e4466b92c42a77a094f31408abeb (diff)
www: spring boot autoconfigured static resources
+ cache busting using Spring
Diffstat (limited to 'juick-www/src/main/resources/templates')
-rw-r--r--juick-www/src/main/resources/templates/layouts/content.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/resources/templates/layouts/content.html b/juick-www/src/main/resources/templates/layouts/content.html
index 4c283116..2ca9fd7e 100644
--- a/juick-www/src/main/resources/templates/layouts/content.html
+++ b/juick-www/src/main/resources/templates/layouts/content.html
@@ -3,8 +3,8 @@
<head id="org" itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <script type="text/javascript" src="/{{ beans.webApp.scriptsUrl }}"></script>
- <link rel="stylesheet" type="text/css" href="/{{ beans.webApp.styleUrl }}"/>
+ <script type="text/javascript" src="{{ beans.webApp.scriptsUrl }}"></script>
+ <link rel="stylesheet" type="text/css" href="{{ beans.webApp.styleUrl }}"/>
{% block headers %}
{{ headers | default('') | raw }}
{% endblock %}