23 lines
374 B
Plaintext
23 lines
374 B
Plaintext
|
{{ define "_index" }}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<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 }}
|