Files
polaris/pkg/dashboard/templates/main.gohtml
Bobby Brennan bd2da76c56 Add explanations for each error
first pass

add info links to dashboard
2019-05-08 16:13:29 +00:00

24 lines
677 B
Plaintext

<!doctype html>
<html>
<head>
{{ template "head" . }}
<link rel="stylesheet" href="/static/css/dashboard.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/cash/3.0.0-beta.3/cash.min.js"></script>
<script>
window.fairwindsAuditData = {{ .JSON }};
</script>
<script type="text/javascript" src="/static/js/main.js"></script>
</head>
<body>
{{ template "navbar" . }}
<div class="main-content">
{{ template "preamble" . }}
{{ template "dashboard" . }}
</div>
{{ template "footer" . }}
</body>
</html>