aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/resources
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
parentcc551432bf80e4466b92c42a77a094f31408abeb (diff)
www: spring boot autoconfigured static resources
+ cache busting using Spring
Diffstat (limited to 'juick-www/src/main/resources')
-rw-r--r--juick-www/src/main/resources/static/favicon.png (renamed from juick-www/src/main/resources/favicon.png)bin244 -> 244 bytes
-rw-r--r--juick-www/src/main/resources/static/logo.png (renamed from juick-www/src/main/resources/logo.png)bin1184 -> 1184 bytes
-rw-r--r--juick-www/src/main/resources/static/tagscloud.png (renamed from juick-www/src/main/resources/tagscloud.png)bin42316 -> 42316 bytes
-rw-r--r--juick-www/src/main/resources/templates/layouts/content.html4
4 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/resources/favicon.png b/juick-www/src/main/resources/static/favicon.png
index bc7161e2..bc7161e2 100644
--- a/juick-www/src/main/resources/favicon.png
+++ b/juick-www/src/main/resources/static/favicon.png
Binary files differ
diff --git a/juick-www/src/main/resources/logo.png b/juick-www/src/main/resources/static/logo.png
index 933f6099..933f6099 100644
--- a/juick-www/src/main/resources/logo.png
+++ b/juick-www/src/main/resources/static/logo.png
Binary files differ
diff --git a/juick-www/src/main/resources/tagscloud.png b/juick-www/src/main/resources/static/tagscloud.png
index 3e1bf169..3e1bf169 100644
--- a/juick-www/src/main/resources/tagscloud.png
+++ b/juick-www/src/main/resources/static/tagscloud.png
Binary files differ
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 %}