JSON is handed to the thymeleaf-layout-template via th:with
authorKai Moritz <kai@juplo.de>
Fri, 8 Jul 2016 16:31:26 +0000 (18:31 +0200)
committerKai Moritz <kai@juplo.de>
Sat, 16 Jul 2016 11:55:24 +0000 (13:55 +0200)
The page-data is handed to the template via th:with als variable "json".

src/main/resources/META-INF/maven/site.vm
src/site/site.xml

index 8295340..f7e6c8b 100644 (file)
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:layout="http://www.thymeleaf.org"
     layout:decorator="templates/layout"
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:layout="http://www.thymeleaf.org"
     layout:decorator="templates/layout"
-    th:with="uri='$sitePath$alignedFileName'"
+    th:with="
+      uri='$sitePath$alignedFileName',
+      json='merge:{&quot;pages&quot;:{#set($sep = "")#foreach($page in $pages)$sep&quot;$sitePath$page.uri&quot;:{&quot;name&quot;:&quot;$page.name&quot;,#if(!$page.childs.isEmpty())&quot;childs&quot;:{#set($csep = "")#foreach($child in $page.childs.entrySet())$csep&quot;$sitePath$child.key&quot;:&quot;$child.value&quot;#set($csep = ",")#end},#end&quot;crumbs&quot;:[#set($csep = "")#if($siteCrumbs)$siteCrumbs#set($csep = ",")#end#foreach($crumb in $page.crumbs)$csep{&quot;uri&quot;:&quot;$sitePath$crumb.uri&quot;,&quot;name&quot;:&quot;$crumb.name&quot;}#set($csep = ",")#end]#if($page.title),&quot;title&quot;:&quot;$page.title&quot;#end#if($page.alt),&quot;alt&quot;:&quot;$page.alt&quot;#end#if($page.img),&quot;img&quot;:&quot;$page.img&quot;#end}#set($sep = ",")#end}#if($siteTitle),&quot;site_title&quot;:&quot;$siteTitle&quot;#end#if($siteAlt),&quot;site_alt&quot;:&quot;$siteAlt&quot;#end#if($siteImg),&quot;site_img&quot;:&quot;$siteImg&quot;#end}'
+      "
     >
   <head>
     <title>juplo - $title</title>
     >
   <head>
     <title>juplo - $title</title>
       </ol>
     </p>
     <hr />
       </ol>
     </p>
     <hr />
-    <article class="main" layout:fragment="maincontent" juplo:variables='merge:{"pages":{#set($sep = "")#foreach($page in $pages)$sep"$sitePath$page.uri":{"name":"$page.name",#if(!$page.childs.isEmpty())"childs":{#set($csep = "")#foreach($child in $page.childs.entrySet())$csep"$sitePath$child.key":"$child.value"#set($csep = ",")#end},#end"crumbs":[#set($csep = "")#if($siteCrumbs)$siteCrumbs#set($csep = ",")#end#foreach($crumb in $page.crumbs)$csep{"uri":"$sitePath$crumb.uri","name":"$crumb.name"}#set($csep = ",")#end]#if($page.title),"title":"$page.title"#end#if($page.alt),"alt":"$page.alt"#end#if($page.img),"img":"$page.img"#end}#set($sep = ",")#end}#if($siteTitle),"site_title":"$siteTitle"#end#if($siteAlt),"site_alt":"$siteAlt"#end#if($siteImg),"site_img":"$siteImg"#end}'>
+    <article class="main" layout:fragment="maincontent">
       <header><h1>$shortTitle</h1></header>
       $bodyContent
     </article>
       <header><h1>$shortTitle</h1></header>
       $bodyContent
     </article>
index 4ac76eb..015e0b3 100644 (file)
@@ -24,7 +24,7 @@
   <custom>
     <thymeproxy>
       <path>/maven-thymeleaf-skin/</path>
   <custom>
     <thymeproxy>
       <path>/maven-thymeleaf-skin/</path>
-      <crumbs>{"uri":"/projects.html","name":"Projects"},{"uri":"/maven-thymeleaf-skin/index.html","name":"Apache-Maven Thymeleaf-Skin"}</crumbs>
+      <crumbs>{&amp;quot;uri&amp;quot;:&amp;quot;/projects.html&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Projects&amp;quot;},{&amp;quot;uri&amp;quot;:&amp;quot;/maven-thymeleaf-skin/index.html&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Apache-Maven Thymeleaf-Skin&amp;quot;}</crumbs>
     </thymeproxy>
   </custom>
 </project>
     </thymeproxy>
   </custom>
 </project>