From 10114659db2bc07cf501843980cb05ffbfc70b0c Mon Sep 17 00:00:00 2001 From: Kai Moritz <kai@juplo.de> Date: Tue, 11 Feb 2014 18:50:45 +0100 Subject: [PATCH] Die Startseite schaltet jetzt den Link im Logo-Text tod --- src/main/webapp/WEB-INF/templates/header.jsp | 6 ++++++ src/main/webapp/WEB-INF/views/index.jsp | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 src/main/webapp/WEB-INF/templates/header.jsp diff --git a/src/main/webapp/WEB-INF/templates/header.jsp b/src/main/webapp/WEB-INF/templates/header.jsp new file mode 100644 index 00000000..864dbed1 --- /dev/null +++ b/src/main/webapp/WEB-INF/templates/header.jsp @@ -0,0 +1,6 @@ +<%@page contentType="text/html;charset=UTF-8"%> +<%@page pageEncoding="UTF-8"%> +<%@page session="false" %> +<%@taglib uri="http://www.springframework.org/tags" prefix="s"%> +<s:url var="base" value="/" /> +<h1 id="logo"><a href="${base}index.html" title="Home" class="l">juplo</a></h1> diff --git a/src/main/webapp/WEB-INF/views/index.jsp b/src/main/webapp/WEB-INF/views/index.jsp index a624ebcd..6dc32ea0 100644 --- a/src/main/webapp/WEB-INF/views/index.jsp +++ b/src/main/webapp/WEB-INF/views/index.jsp @@ -6,6 +6,9 @@ <s:url var="base" value="/" /> <t:insertDefinition name="NOMENU"> <t:putAttribute name="title" value="Branding" type="string"/> + <t:putAttribute name="header"> + <h1 id="logo"><strong class="l">juplo</strong></h1> + </t:putAttribute> <t:putAttribute name="breadcrumb"> <li class="b"><strong class="b">Home</strong></li> </t:putAttribute> -- 2.20.1