mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 17:07:26 +01:00
16 lines
400 B
Cheetah
16 lines
400 B
Cheetah
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/list.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const listType = {{ .Infos.listType }};
|
|
const filterPresets = {{ .FilterPresets }};
|
|
const clusterCockpitConfig = {{ .Config }};
|
|
</script>
|
|
<script src='/build/list.js'></script>
|
|
{{end}}
|