mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
15 lines
340 B
Cheetah
15 lines
340 B
Cheetah
|
{{define "content"}}
|
||
|
<div id="svelte-app"></div>
|
||
|
{{end}}
|
||
|
|
||
|
{{define "stylesheets"}}
|
||
|
<link rel='stylesheet' href='/build/status.css'>
|
||
|
{{end}}
|
||
|
{{define "javascript"}}
|
||
|
<script>
|
||
|
const infos = {{ .Infos }};
|
||
|
const clusterCockpitConfig = {{ .Config }};
|
||
|
</script>
|
||
|
<script src='/build/status.js'></script>
|
||
|
{{end}}
|