From 944059d42639166178a37402b25ac764ada07627 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Tue, 27 Jun 2017 10:47:29 +0200 Subject: [PATCH] WIP: less.js ausgebaut --- dist/thymeleaf/about.html | 6 +++--- dist/thymeleaf/agb.html | 6 +++--- dist/thymeleaf/blog.html | 6 +++--- dist/thymeleaf/blog/article.html | 20 +++++++++---------- dist/thymeleaf/blog/comments.html | 6 +++--- dist/thymeleaf/contact.html | 6 +++--- dist/thymeleaf/datenschutz.html | 6 +++--- dist/thymeleaf/expertise.html | 6 +++--- dist/thymeleaf/google-analytics.html | 6 +++--- dist/thymeleaf/haftung-inhalte.html | 6 +++--- dist/thymeleaf/haftung-links.html | 6 +++--- dist/thymeleaf/impressum.html | 6 +++--- dist/thymeleaf/index.html | 6 +++--- dist/thymeleaf/potemkin/accelerator.html | 6 +++--- .../potemkin/fix-swf/getting-started.html | 6 +++--- dist/thymeleaf/potemkin/fix-swf/overview.html | 6 +++--- dist/thymeleaf/potemkin/html-experimente.html | 6 +++--- .../html-experimente/basis-layout.html | 2 +- .../potemkin/html-experimente/breadcrumb.html | 6 +++--- .../html-experimente/druck-layout.html | 4 ++-- .../potemkin/html-experimente/error.html | 6 +++--- ...st-leer-einspaltig-mit-marginalinhalt.html | 6 +++--- .../fast-leer-einspaltig.html | 6 +++--- ...kein-men\303\274-aber-marginalinhalt.html" | 6 +++--- .../fast-leer-kein-men\303\274.html" | 6 +++--- ...r-mit-men\303\274-und-marginalinhalt.html" | 6 +++--- .../fast-leer-mit-men\303\274.html" | 6 +++--- .../potemkin/html-experimente/formulare.html | 6 +++--- .../potemkin/html-experimente/phone.html | 4 ++-- .../html-experimente/seitenaufteilung.html | 4 ++-- .../potemkin/html-experimente/seitenkopf.html | 4 ++-- .../potemkin/html-experimente/symbole.html | 6 +++--- .../potemkin/html-experimente/tablet.html | 4 ++-- .../potemkin/html-experimente/testlab.html | 6 +++--- .../potemkin/html-experimente/tiny.html | 4 ++-- dist/thymeleaf/potemkin/typo.html | 6 +++--- dist/thymeleaf/projects.html | 6 +++--- dist/thymeleaf/references.html | 6 +++--- dist/thymeleaf/templates/404.html | 6 +++--- dist/thymeleaf/templates/error.html | 6 +++--- dist/thymeleaf/templates/fragments.html | 6 +++--- dist/thymeleaf/templates/layout.html | 8 ++++---- dist/thymeleaf/urheberrechte.html | 6 +++--- 43 files changed, 129 insertions(+), 129 deletions(-) diff --git a/dist/thymeleaf/about.html b/dist/thymeleaf/about.html index 9a4eea2d..21e4aaf4 100644 --- a/dist/thymeleaf/about.html +++ b/dist/thymeleaf/about.html @@ -9,9 +9,9 @@ About - - - + + + diff --git a/dist/thymeleaf/agb.html b/dist/thymeleaf/agb.html index 9eb4b576..70cb0bb2 100644 --- a/dist/thymeleaf/agb.html +++ b/dist/thymeleaf/agb.html @@ -9,9 +9,9 @@ Allgemeine Geschäftsbedingungen (AGB) - - - + + + diff --git a/dist/thymeleaf/blog.html b/dist/thymeleaf/blog.html index 53d8de22..d513c1f4 100644 --- a/dist/thymeleaf/blog.html +++ b/dist/thymeleaf/blog.html @@ -9,9 +9,9 @@ Blog - - - + + + diff --git a/dist/thymeleaf/blog/article.html b/dist/thymeleaf/blog/article.html index 0c175d8e..dbfd8656 100644 --- a/dist/thymeleaf/blog/article.html +++ b/dist/thymeleaf/blog/article.html @@ -9,9 +9,9 @@ juplo - blog - Combining jetty-maven-plugin and wro4j-maven-plugin for Dynamic Reloading of LESS-Resources - - - + + + @@ -25,18 +25,18 @@
-

Ever searched for a simple configuration, that lets you use your jetty-maven-plugin as you are used to, while working with LESS to simplify your stylesheets?

-

You cannot do both, use the Client-side mode of LESS to ease development and use the lesscss-maven-plugin to automatically compile the LESS-sources into CSS for production. That does not work, because your stylesheets must be linked in different ways if you are switching between the client-side mode – which is best for development – and the pre-compiled mode – which is best for production. For the client-side mode you need something like:

+

Ever searched for a simple configuration, that lets you use your jetty-maven-plugin as you are used to, while working with LESS to simplify your stylesheets?

+

You cannot do both, use the Client-side mode of LESS to ease development and use the lesscss-maven-plugin to automatically compile the LESS-sources into CSS for production. That does not work, because your stylesheets must be linked in different ways if you are switching between the client-side mode – which is best for development – and the pre-compiled mode – which is best for production. For the client-side mode you need something like:

   
-  <link rel="stylesheet/less" type="text/css" href="styles.less" />
+  <link rel="stylesheet" type="text/css" href="styles.css" />
   <script src="../less.js" type="text/javascript"></script>
   
           

While, for the pre-compiled mode, you want to link to your stylesheets as usual, with:

   
-  <link rel="stylesheet/less" type="text/css" href="styles.css" />
+  <link rel="stylesheet" type="text/css" href="styles.css" />
   
           

While looking for a solution to this dilemma, I stumbled accross wro4j. Originally intended, to speed up page-delivery by combining and minimizing multiple resources into one through the use of a servlet-filter, this tool also comes with a maven-plugin, that let you do the same offline, while compiling your webapp.

@@ -50,13 +50,13 @@ <groups xmlns="http://www.isdc.ro/wro"> <group name="base"> - <css>/less/base/*.less</css> + <css>/less/base/*.css</css> </group> -

wro4j looks for /less/base/*.less inside the root of the web-context, which is equal to src/main/webapp in a normal maven-project. There are other ways to specifie the resources, which enable you to store them elswhere. But this approach works best for our goal, because the path is understandable for both: the wro4j servlet-filter, we are configuring now for our development-environment, and the wro4j-maven-plugin, that we will configure later for build-time compilation.

+

wro4j looks for /less/base/*.css inside the root of the web-context, which is equal to src/main/webapp in a normal maven-project. There are other ways to specifie the resources, which enable you to store them elswhere. But this approach works best for our goal, because the path is understandable for both: the wro4j servlet-filter, we are configuring now for our development-environment, and the wro4j-maven-plugin, that we will configure later for build-time compilation.

wro.properties

-

wro.properties in short tells wro4j, how or if it should convert the combined sources and how it should behave. I am using the following configuration to tell wro4j, that it should convert *.less-sources into CSS and do that on every request:

+

wro.properties in short tells wro4j, how or if it should convert the combined sources and how it should behave. I am using the following configuration to tell wro4j, that it should convert *.css-sources into CSS and do that on every request:

   
   preProcessors=less4j
diff --git a/dist/thymeleaf/blog/comments.html b/dist/thymeleaf/blog/comments.html
index b4ef2302..7020e309 100644
--- a/dist/thymeleaf/blog/comments.html
+++ b/dist/thymeleaf/blog/comments.html
@@ -9,9 +9,9 @@
     juplo - blog - hibernate4-maven-plugin
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/contact.html b/dist/thymeleaf/contact.html
index a2caf6c6..51fa169d 100644
--- a/dist/thymeleaf/contact.html
+++ b/dist/thymeleaf/contact.html
@@ -9,9 +9,9 @@
     Contact
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/datenschutz.html b/dist/thymeleaf/datenschutz.html
index 77b6be15..8465c5a5 100644
--- a/dist/thymeleaf/datenschutz.html
+++ b/dist/thymeleaf/datenschutz.html
@@ -9,9 +9,9 @@
     Datenschutz
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/expertise.html b/dist/thymeleaf/expertise.html
index 5e641143..be7b84df 100644
--- a/dist/thymeleaf/expertise.html
+++ b/dist/thymeleaf/expertise.html
@@ -9,9 +9,9 @@
     Expertise
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/google-analytics.html b/dist/thymeleaf/google-analytics.html
index 6207704b..34fd688c 100644
--- a/dist/thymeleaf/google-analytics.html
+++ b/dist/thymeleaf/google-analytics.html
@@ -9,9 +9,9 @@
     Google Analytics
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/haftung-inhalte.html b/dist/thymeleaf/haftung-inhalte.html
index b3183bc7..bb3dfc7d 100644
--- a/dist/thymeleaf/haftung-inhalte.html
+++ b/dist/thymeleaf/haftung-inhalte.html
@@ -9,9 +9,9 @@
     Haftung für Inhalte
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/haftung-links.html b/dist/thymeleaf/haftung-links.html
index 8894c74e..a4e09f86 100644
--- a/dist/thymeleaf/haftung-links.html
+++ b/dist/thymeleaf/haftung-links.html
@@ -9,9 +9,9 @@
     Haftung für Links
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/impressum.html b/dist/thymeleaf/impressum.html
index 20a15627..af3f85f8 100644
--- a/dist/thymeleaf/impressum.html
+++ b/dist/thymeleaf/impressum.html
@@ -9,9 +9,9 @@
     Impressum
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/index.html b/dist/thymeleaf/index.html
index 98720af5..13616759 100644
--- a/dist/thymeleaf/index.html
+++ b/dist/thymeleaf/index.html
@@ -9,9 +9,9 @@
     Home
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/accelerator.html b/dist/thymeleaf/potemkin/accelerator.html
index 39c57148..e9f635b4 100644
--- a/dist/thymeleaf/potemkin/accelerator.html
+++ b/dist/thymeleaf/potemkin/accelerator.html
@@ -9,9 +9,9 @@
     
     
     Fix SWF - Overview
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/fix-swf/getting-started.html b/dist/thymeleaf/potemkin/fix-swf/getting-started.html
index fe9930f1..a06593c9 100644
--- a/dist/thymeleaf/potemkin/fix-swf/getting-started.html
+++ b/dist/thymeleaf/potemkin/fix-swf/getting-started.html
@@ -9,9 +9,9 @@
     Fix SWF - Getting Started
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/fix-swf/overview.html b/dist/thymeleaf/potemkin/fix-swf/overview.html
index 6fe0b838..335ea79f 100644
--- a/dist/thymeleaf/potemkin/fix-swf/overview.html
+++ b/dist/thymeleaf/potemkin/fix-swf/overview.html
@@ -9,9 +9,9 @@
     
     
     Fix SWF - Overview
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente.html b/dist/thymeleaf/potemkin/html-experimente.html
index d2b1512b..f76adc80 100644
--- a/dist/thymeleaf/potemkin/html-experimente.html
+++ b/dist/thymeleaf/potemkin/html-experimente.html
@@ -10,9 +10,9 @@
     HTML-Experimente
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/basis-layout.html b/dist/thymeleaf/potemkin/html-experimente/basis-layout.html
index 6ab162ec..bd464c32 100644
--- a/dist/thymeleaf/potemkin/html-experimente/basis-layout.html
+++ b/dist/thymeleaf/potemkin/html-experimente/basis-layout.html
@@ -9,7 +9,7 @@
   
     HTML-Experimente - Basis-Layout
     
-    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/breadcrumb.html b/dist/thymeleaf/potemkin/html-experimente/breadcrumb.html
index 9df72091..99550758 100644
--- a/dist/thymeleaf/potemkin/html-experimente/breadcrumb.html
+++ b/dist/thymeleaf/potemkin/html-experimente/breadcrumb.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Langer Breadcrumb
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/druck-layout.html b/dist/thymeleaf/potemkin/html-experimente/druck-layout.html
index 2412ca58..9e89249c 100644
--- a/dist/thymeleaf/potemkin/html-experimente/druck-layout.html
+++ b/dist/thymeleaf/potemkin/html-experimente/druck-layout.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Druck-Layout
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/error.html b/dist/thymeleaf/potemkin/html-experimente/error.html
index 52e5b5c6..e4fb78d1 100644
--- a/dist/thymeleaf/potemkin/html-experimente/error.html
+++ b/dist/thymeleaf/potemkin/html-experimente/error.html
@@ -7,9 +7,9 @@
   
     This Page Will Raise An Error
     
-    
-    
-    
+    
+    
+    
   
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig-mit-marginalinhalt.html b/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig-mit-marginalinhalt.html
index 17503b40..1e311036 100644
--- a/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig-mit-marginalinhalt.html
+++ b/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig-mit-marginalinhalt.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere einspaltige Seite mit Marginalinhalt
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig.html b/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig.html
index ee08389e..77f82a53 100644
--- a/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig.html
+++ b/dist/thymeleaf/potemkin/html-experimente/fast-leer-einspaltig.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere einspaltige Seite
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274-aber-marginalinhalt.html" "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274-aber-marginalinhalt.html"
index 377e38ad..fae19462 100644
--- "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274-aber-marginalinhalt.html"
+++ "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274-aber-marginalinhalt.html"
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere Seite ohne Menü aber mit Marginalspalte
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274.html" "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274.html"
index 1659911b..a1d31c84 100644
--- "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274.html"
+++ "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-kein-men\303\274.html"
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere Seite ohne Menü
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274-und-marginalinhalt.html" "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274-und-marginalinhalt.html"
index 7bcc8c9d..9cfe3b17 100644
--- "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274-und-marginalinhalt.html"
+++ "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274-und-marginalinhalt.html"
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere Seite mit Menü und Marginalinhalt
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274.html" "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274.html"
index 7c6e302b..b63dad16 100644
--- "a/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274.html"
+++ "b/dist/thymeleaf/potemkin/html-experimente/fast-leer-mit-men\303\274.html"
@@ -10,9 +10,9 @@
     HTML-Experimente - Fast leere Seite mit Menü
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/formulare.html b/dist/thymeleaf/potemkin/html-experimente/formulare.html
index 9f9eeeec..ef077dde 100644
--- a/dist/thymeleaf/potemkin/html-experimente/formulare.html
+++ b/dist/thymeleaf/potemkin/html-experimente/formulare.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Formulare
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/phone.html b/dist/thymeleaf/potemkin/html-experimente/phone.html
index 2a7232f6..d5266409 100644
--- a/dist/thymeleaf/potemkin/html-experimente/phone.html
+++ b/dist/thymeleaf/potemkin/html-experimente/phone.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Layout PHONE
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/seitenaufteilung.html b/dist/thymeleaf/potemkin/html-experimente/seitenaufteilung.html
index 78c20e91..5ffb7b9d 100644
--- a/dist/thymeleaf/potemkin/html-experimente/seitenaufteilung.html
+++ b/dist/thymeleaf/potemkin/html-experimente/seitenaufteilung.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Basis-Layout & Seitenaufteilung
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html b/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html
index 7cfef561..0c2f0865 100644
--- a/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html
+++ b/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Basis-Layout & Seitenkopf
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/symbole.html b/dist/thymeleaf/potemkin/html-experimente/symbole.html
index 85e6a359..a129227e 100644
--- a/dist/thymeleaf/potemkin/html-experimente/symbole.html
+++ b/dist/thymeleaf/potemkin/html-experimente/symbole.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Symbol-Font
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/tablet.html b/dist/thymeleaf/potemkin/html-experimente/tablet.html
index b5a5adac..bfa9e54d 100644
--- a/dist/thymeleaf/potemkin/html-experimente/tablet.html
+++ b/dist/thymeleaf/potemkin/html-experimente/tablet.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Layout TABLET
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/testlab.html b/dist/thymeleaf/potemkin/html-experimente/testlab.html
index 9d522207..fbd18987 100644
--- a/dist/thymeleaf/potemkin/html-experimente/testlab.html
+++ b/dist/thymeleaf/potemkin/html-experimente/testlab.html
@@ -10,9 +10,9 @@
     HTML-Experimente - Media-Query-Test: BEISPIEL
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/potemkin/html-experimente/tiny.html b/dist/thymeleaf/potemkin/html-experimente/tiny.html
index 79582ff7..edc013aa 100644
--- a/dist/thymeleaf/potemkin/html-experimente/tiny.html
+++ b/dist/thymeleaf/potemkin/html-experimente/tiny.html
@@ -9,8 +9,8 @@
   
     HTML-Experimente - Layout TINY
     
-    
-    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/potemkin/typo.html b/dist/thymeleaf/potemkin/typo.html
index 84b58b6e..a2b6c77f 100644
--- a/dist/thymeleaf/potemkin/typo.html
+++ b/dist/thymeleaf/potemkin/typo.html
@@ -9,9 +9,9 @@
     Typography
     
     
-    
-    
-    
+    
+    
+    
     
     
     
diff --git a/dist/thymeleaf/projects.html b/dist/thymeleaf/projects.html
index ad275a7e..18dae3ec 100644
--- a/dist/thymeleaf/projects.html
+++ b/dist/thymeleaf/projects.html
@@ -9,9 +9,9 @@
     Projects
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/references.html b/dist/thymeleaf/references.html
index 623e4b40..061f65f0 100644
--- a/dist/thymeleaf/references.html
+++ b/dist/thymeleaf/references.html
@@ -9,9 +9,9 @@
     References
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/templates/404.html b/dist/thymeleaf/templates/404.html
index b08195fc..4143657e 100644
--- a/dist/thymeleaf/templates/404.html
+++ b/dist/thymeleaf/templates/404.html
@@ -9,9 +9,9 @@
     404: Page Not Found!
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/templates/error.html b/dist/thymeleaf/templates/error.html
index 1550382a..3b7f4d95 100644
--- a/dist/thymeleaf/templates/error.html
+++ b/dist/thymeleaf/templates/error.html
@@ -9,9 +9,9 @@
     An Unexpected Error Occured!
     
     
-    
-    
-    
+    
+    
+    
     
     
   
diff --git a/dist/thymeleaf/templates/fragments.html b/dist/thymeleaf/templates/fragments.html
index c5a23a01..3b668511 100644
--- a/dist/thymeleaf/templates/fragments.html
+++ b/dist/thymeleaf/templates/fragments.html
@@ -3,9 +3,9 @@
   
     Fragments
     
-    
-    
-    
+    
+    
+    
     
   
   
diff --git a/dist/thymeleaf/templates/layout.html b/dist/thymeleaf/templates/layout.html
index b85f1d9c..5478b2dc 100644
--- a/dist/thymeleaf/templates/layout.html
+++ b/dist/thymeleaf/templates/layout.html
@@ -9,9 +9,9 @@
     juplo - BASISTEMPLATE
     
     
-    
-    
-    
+    
+    
+