From: Kai Moritz Date: Fri, 8 Jul 2016 09:49:11 +0000 (+0200) Subject: Fixed the URI and the name of the home-page in the breadcrumb-path X-Git-Tag: maven-thymeleaf-skin-1.0.0~14 X-Git-Url: https://juplo.de/gitweb/?p=maven-thymeleaf-skin;a=commitdiff_plain;h=483cea4c5c28c3c8624af88f3939fa7ecb960dd2 Fixed the URI and the name of the home-page in the breadcrumb-path This page must have the URI "index.html" and should be named after the project. --- diff --git a/src/main/resources/META-INF/maven/site.vm b/src/main/resources/META-INF/maven/site.vm index fa2d040..05116fa 100644 --- a/src/main/resources/META-INF/maven/site.vm +++ b/src/main/resources/META-INF/maven/site.vm @@ -77,8 +77,8 @@ ## Seiten einlesen #set ( $page = $project.getClass().forName('java.util.LinkedHashMap').newInstance() ) -#set ( $sinkhole = $page.put("uri", $alignedFileName) ) -#set ( $sinkhole = $page.put("name", "About") ) +#set ( $sinkhole = $page.put("uri", "index.html") ) +#set ( $sinkhole = $page.put("name", "$project.name") ) #set ( $sinkhole = $stack.push($page) ) #foreach ( $menu in $decoration.body.menus ) ## Nur benannte Menüs werden berücksichtigt