Separated layout from content with Thymeleaf
[demos/testing] / src / main / java / de / juplo / demo / HtmlController.java
index eaa2fcc..5696718 100644 (file)
@@ -27,6 +27,6 @@ public class HtmlController
   public String fetch(Model model, @RequestParam String path)
   {
     model.addAttribute("text", service.getRemoteText(path));
-    return "layout";
+    return "home";
   }
 }