Matthew Stobbs
ed9acb7e10
- modified host menu to include the cluster view - whole site now works via htmx - about page is still static
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
package layouts
|
|
|
|
import "git.staur.ca/stobbsm/clustvirt/view/components"
|
|
|
|
templ Manager(title string, subtitle string) {
|
|
<!DOCTYPE html>
|
|
<html class={ "text-slate-50" , "bg-slate-900" }>
|
|
<head>
|
|
<title>{ title } - { subtitle }</title>
|
|
<link href="/static/css/style.css" type="text/css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<div class={ "flex" , "flex-col" , "h-screen" }>
|
|
<header class={ "px-4" }>
|
|
@header(title, subtitle, components.DefaultNavBar)
|
|
</header>
|
|
<main class={ "px-4" , "h-full" }>
|
|
<div class={ "flex", "flex-row", "h-full", "mt-2" }>
|
|
@components.HostNav()
|
|
<div id="sysContent" class={ "w-3/4" , "px-2" }>
|
|
<p>This is where you can see a system overview of all available hosts</p>
|
|
<p>
|
|
For now, there is just this simple box to choose a host to connect to
|
|
and push the button to load the system information via HTMX
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class={ "px-4" , "bottom-0", "w-full" , "justify-self-end" }>
|
|
@footer()
|
|
</footer>
|
|
</div>
|
|
<!-- Load HTMX -->
|
|
<script src=" https://unpkg.com/htmx.org@1.9.11" integrity="sha384-0gxUXCCR8yv9FM2b+U3FDbsKthCI66oH5IA9fHppQq9DDMHuMauqq1ZHBpJxQ0J0" crossorigin="anonymous">
|
|
</script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.2/dist/chart.umd.min.js"></script>
|
|
</body>
|
|
</html>
|
|
}
|