Multi page layout init for #212

This commit is contained in:
Anthony Stirling
2023-05-27 14:23:25 +01:00
parent 8bbbdbd359
commit 2d88987cb3
7 changed files with 165 additions and 1 deletions

View File

@@ -108,4 +108,13 @@ public class OtherWebController {
return "other/remove-blanks";
}
@GetMapping("/multi-page-layout")
@Hidden
public String multiPageLayoutForm(Model model) {
model.addAttribute("currentPage", "multi-page-layout");
return "other/multi-page-layout";
}
}