Matthew Stobbs
6e0198de35
- instead of trying to change their colors in css, i created new svgs based on the ones I wanted
23 lines
418 B
Plaintext
23 lines
418 B
Plaintext
{{ define "_index" }}
|
|
<!DOCTYPE html>
|
|
<html class="text-nosferatu-100 bg-nosferatu-900">
|
|
<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 }}
|