Redmage/views/components/body.templ
Tigor Hutasuhut 3fdb78362b
Some checks failed
/ push (push) Has been cancelled
subreddit: implemented edit page and api
2024-05-28 00:30:29 +07:00

17 lines
362 B
Plaintext

package components
import "github.com/tigorlazuardi/redmage/views"
templ Body(c *views.Context) {
<body class="bg-base-100 min-h-screen w-screen max-w-full" hx-boost="true" hx-ext="response-targets">
@Navigation(c) {
<div class="flex">
@Navbar(c)
<div id="root-content" class="flex-grow">
{ children... }
</div>
</div>
}
</body>
}