clustvirt/view/layouts/manager.templ
Matthew Stobbs 5fd215d6dd nav bar!
Added a navbar that doesn't do anything to the homepage
2024-03-15 16:48:11 -06:00

22 lines
377 B
Plaintext

package layouts
templ Manager(config LayoutConfig) {
<!DOCTYPE html>
<html class={ "text-slate-50", "bg-slate-900" }>
<head>
<title>ClustVirt</title>
<link href="/static/css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header class={}>
@header(config.MainTitle, config.SubTitle)
</header>
<footer>
@footer()
</footer>
</body>
</html>
}