mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-08-06 03:00:35 +02:00
.github
api
auth
config
frontend
graph
metricdata
schema
templates
monitoring
analysis.html
job.html
jobs.html
list.html
node.html
systems.html
user.html
404.html
base.html
home.html
login.html
templates.go
utils
.env
.gitignore
.gitmodules
LICENSE
README.md
go.mod
go.sum
gqlgen.yml
init-db.go
server.go
16 lines
392 B
HTML
16 lines
392 B
HTML
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/user.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const userInfos = {{ .Infos }};
|
|
const filterPresets = {{ .FilterPresets }};
|
|
const clusterCockpitConfig = {{ .Config }};
|
|
</script>
|
|
<script src='/build/user.js'></script>
|
|
{{end}}
|