make simple test landing pages

- add HomeController
- add index.html
- add layout.html
- add management.js
- add management.css
- add css js and html to .editorconfig
This commit is contained in:
2025-01-14 18:39:26 +01:00
parent 182508e919
commit 091f172521
6 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package ltd.hlaeja.controller
import org.springframework.stereotype.Controller
import org.springframework.ui.Model
import org.springframework.web.bind.annotation.GetMapping
@Controller
class HomeController {
@Suppress("UnusedParameter", "FunctionOnlyReturningConstant")
@GetMapping("/")
fun home(model: Model): String = "home/index"
}