clustvirt/view/layouts/manager.templ

24 lines
492 B
Plaintext
Raw Normal View History

package layouts
import "git.staur.ca/stobbsm/clustvirt/view/components"
templ Manager(title string, subtitle string, navBarItem []components.NavItem) {
<!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={"mx-4"}>
@header(title, subtitle, navBarItem)
</header>
<footer class={"mx-4"}>
@footer()
</footer>
</body>
</html>
}