2024-03-14 01:12:48 +00:00
|
|
|
{{ define "_index" }}
|
|
|
|
<!DOCTYPE html>
|
2024-03-14 07:54:41 +00:00
|
|
|
<html class="text-nosferatu-100 bg-nosferatu-900">
|
2024-03-14 01:12:48 +00:00
|
|
|
<head>
|
|
|
|
<title>Clustvirt</title>
|
|
|
|
<link href="/static/css/style.css" type="text/css" rel="stylesheet"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
{{ template "header" }}
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div id="content" name="content">
|
|
|
|
{{ template "content" . }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
{{ template "footer" }}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|