package web // All HTML templates and CSS are embedded as Go strings. // Compiled into the binary — zero external file dependencies at runtime. // As the UI grows, switch to go:embed for easier editing. const allTemplates = layoutTmpl + dashboardTmpl + stacksTmpl + loginTmpl + logsTmpl + deployTmpl + appInfoTmpl const layoutTmpl = ` {{define "layout_start"}}
Nincs elérhető alkalmazás.
{{.Meta.Description}}
{{end}} {{if .Containers}}{{.Meta.Description}}
{{end}} Részletes leírás, képernyőképek{{.CustomerName}}
{{if .Error}}{{.Logs}}
{{.AppInfo.Tagline}}
{{else}}{{.Meta.Description}}
{{end}}{{.AppInfo.DefaultCreds}}
Az első bejelentkezés után azonnal változtasd meg!
{{.Description}}
{{end}}{{.HelpText}}
{{end}} {{if .HelpURL}}{{end}}