Files
polaris/pkg/dashboard/templates/main.gohtml
2020-12-04 10:48:34 -07:00

23 lines
735 B
Plaintext

<!doctype html>
<html>
<head>
<script>
window.polarisSummary = {{ .JSON }};
</script>
{{ template "head" . }}
</head>
<body>
{{ template "navbar" . }}
<div class="main-content">
{{ template "preamble" . }}
{{ template "dashboard" . }}
</div>
{{ template "footer" . }}
<!-- Bootstrap scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>