mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-04 11:15:55 +02:00
***Add Control component and update Header component*** ***Add control.tmpl template*** ***Update rollup.config.mjs*** ***Update routes.go*** ***Add VerticalTab and LinuxUser components
15 lines
342 B
Cheetah
15 lines
342 B
Cheetah
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/control.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const infos = {{ .Infos }};
|
|
const clusterCockpitConfig = {{ .Config }};
|
|
</script>
|
|
<script src='/build/control.js'></script>
|
|
{{end}}
|