Complete redesign to allow assigns style state

This commit is contained in:
Paul-Henri Froidmont 2025-08-17 21:55:13 +02:00
parent ae0dc04a9e
commit bb062b9679
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
18 changed files with 802 additions and 739 deletions

View file

@ -0,0 +1,13 @@
package scalive
import scalive.HtmlElement
object RootLayout:
def apply[RootModel](content: HtmlElement): HtmlElement =
htmlRootTag(
lang := "en",
metaTag(charset := "utf-8"),
bodyTag(
// content
)
)