From bf105a75fc8f5d511151c97f54b330104f31e480 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Tue, 17 Dec 2013 11:51:14 +0100 Subject: [PATCH] =?utf8?q?=20anstelle=20des=20-Tags=20f?= =?utf8?q?=C3=BCr=20die=20Pfadkorrektur=20benutzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/templates/html5page.jsp | 25 ++++++++------- .../webapp/WEB-INF/templates/maincontent.jsp | 6 ++-- .../webapp/WEB-INF/templates/navigation.jsp | 6 ++-- src/main/webapp/WEB-INF/views/blog.jsp | 6 ++-- src/main/webapp/WEB-INF/views/contact.jsp | 4 ++- src/main/webapp/WEB-INF/views/impressum.jsp | 4 ++- src/main/webapp/WEB-INF/views/projects.jsp | 18 ++++++----- .../webapp/WEB-INF/views/projects/fix-swf.jsp | 30 +++++++++-------- .../projects/fix-swf/getting-started.jsp | 32 ++++++++++--------- .../views/projects/fix-swf/overview.jsp | 32 ++++++++++--------- .../webapp/WEB-INF/views/projects/typo.jsp | 24 +++++++------- 11 files changed, 104 insertions(+), 83 deletions(-) diff --git a/src/main/webapp/WEB-INF/templates/html5page.jsp b/src/main/webapp/WEB-INF/templates/html5page.jsp index 3617d67..46c4e08 100644 --- a/src/main/webapp/WEB-INF/templates/html5page.jsp +++ b/src/main/webapp/WEB-INF/templates/html5page.jsp @@ -3,32 +3,33 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + juplo - <t:getAsString name="title"/> - - + - +
"> @@ -59,8 +60,8 @@
diff --git a/src/main/webapp/WEB-INF/templates/maincontent.jsp b/src/main/webapp/WEB-INF/templates/maincontent.jsp index f368dd8..c710ebb 100644 --- a/src/main/webapp/WEB-INF/templates/maincontent.jsp +++ b/src/main/webapp/WEB-INF/templates/maincontent.jsp @@ -1,10 +1,12 @@ <%@page contentType="text/html;charset=UTF-8"%> <%@page pageEncoding="UTF-8"%> <%@page session="false" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> +

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim - ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut + ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in diff --git a/src/main/webapp/WEB-INF/templates/navigation.jsp b/src/main/webapp/WEB-INF/templates/navigation.jsp index af77e17..385d09f 100644 --- a/src/main/webapp/WEB-INF/templates/navigation.jsp +++ b/src/main/webapp/WEB-INF/templates/navigation.jsp @@ -1,9 +1,11 @@ <%@page contentType="text/html;charset=UTF-8"%> <%@page pageEncoding="UTF-8"%> <%@page session="false" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> +

Navigation

diff --git a/src/main/webapp/WEB-INF/views/blog.jsp b/src/main/webapp/WEB-INF/views/blog.jsp index e0b6428..aa33cc7 100644 --- a/src/main/webapp/WEB-INF/views/blog.jsp +++ b/src/main/webapp/WEB-INF/views/blog.jsp @@ -2,10 +2,12 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • +
  • Home
  • Blog
  • @@ -13,7 +15,7 @@ diff --git a/src/main/webapp/WEB-INF/views/contact.jsp b/src/main/webapp/WEB-INF/views/contact.jsp index 2fc10c1..330b653 100644 --- a/src/main/webapp/WEB-INF/views/contact.jsp +++ b/src/main/webapp/WEB-INF/views/contact.jsp @@ -2,10 +2,12 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • +
  • Home
  • Contact
  • diff --git a/src/main/webapp/WEB-INF/views/impressum.jsp b/src/main/webapp/WEB-INF/views/impressum.jsp index 45946d2..cdbd978 100644 --- a/src/main/webapp/WEB-INF/views/impressum.jsp +++ b/src/main/webapp/WEB-INF/views/impressum.jsp @@ -2,10 +2,12 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • +
  • Home
  • Impressum
  • diff --git a/src/main/webapp/WEB-INF/views/projects.jsp b/src/main/webapp/WEB-INF/views/projects.jsp index a33a477..98fbdb4 100644 --- a/src/main/webapp/WEB-INF/views/projects.jsp +++ b/src/main/webapp/WEB-INF/views/projects.jsp @@ -2,27 +2,29 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • +
  • Home
  • Projects
  • Navigation

    diff --git a/src/main/webapp/WEB-INF/views/projects/fix-swf.jsp b/src/main/webapp/WEB-INF/views/projects/fix-swf.jsp index 3463258..ac7cc06 100644 --- a/src/main/webapp/WEB-INF/views/projects/fix-swf.jsp +++ b/src/main/webapp/WEB-INF/views/projects/fix-swf.jsp @@ -2,39 +2,41 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • -
  • Projects
  • +
  • Home
  • +
  • Projects
  • Fix SWF
  • Navigation

    diff --git a/src/main/webapp/WEB-INF/views/projects/fix-swf/getting-started.jsp b/src/main/webapp/WEB-INF/views/projects/fix-swf/getting-started.jsp index cf406a6..830abc1 100644 --- a/src/main/webapp/WEB-INF/views/projects/fix-swf/getting-started.jsp +++ b/src/main/webapp/WEB-INF/views/projects/fix-swf/getting-started.jsp @@ -2,40 +2,42 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • -
  • Projects
  • -
  • Fix SWF
  • +
  • Home
  • +
  • Projects
  • +
  • Fix SWF
  • Getting Started
  • Navigation

    diff --git a/src/main/webapp/WEB-INF/views/projects/fix-swf/overview.jsp b/src/main/webapp/WEB-INF/views/projects/fix-swf/overview.jsp index 14a8bf3..682be34 100644 --- a/src/main/webapp/WEB-INF/views/projects/fix-swf/overview.jsp +++ b/src/main/webapp/WEB-INF/views/projects/fix-swf/overview.jsp @@ -2,40 +2,42 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • -
  • Projects
  • -
  • Fix SWF
  • +
  • Home
  • +
  • Projects
  • +
  • Fix SWF
  • Overview
  • Navigation

    diff --git a/src/main/webapp/WEB-INF/views/projects/typo.jsp b/src/main/webapp/WEB-INF/views/projects/typo.jsp index 67879b3..789cb01 100644 --- a/src/main/webapp/WEB-INF/views/projects/typo.jsp +++ b/src/main/webapp/WEB-INF/views/projects/typo.jsp @@ -2,30 +2,32 @@ <%@page pageEncoding="UTF-8"%> <%@page session="false" %> <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> + -
  • Home
  • -
  • Projects
  • +
  • Home
  • +
  • Projects
  • Typography
  • Navigation

    @@ -34,7 +36,7 @@ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud - exercitation ullamco laboris nisi ut aliquip + exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, -- 2.39.5