mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-28 16:45:32 +00:00
BUGFIX: order of locals and globasl in template parsing
This commit is contained in:
@@ -93,12 +93,13 @@ func (c *TemplateContext) Globals() map[string]string {
|
||||
}
|
||||
|
||||
func (c *TemplateContext) Template(fsys fs.FS, funcmap *template.FuncMap) (*template.Template, error) {
|
||||
t, err := readTemplates(fsys, nil, c.globals, funcmap)
|
||||
// TODO: locals need to be in order: root, head, body
|
||||
t, err := readTemplates(fsys, nil, c.locals, funcmap)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
t, err = readTemplates(fsys, t, c.locals, funcmap)
|
||||
t, err = readTemplates(fsys, t, c.globals, funcmap)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
@@ -51,7 +51,6 @@ func (r *TemplateRegistry) Load() error {
|
||||
// TODO: what if there is no template in the directory above?
|
||||
// What if a certain path is or should uncallable since it has no index or body?
|
||||
func (r *TemplateRegistry) load() error {
|
||||
// INFO: Parse setrs r.templates, which is why you need to make sure to call Parse() once
|
||||
templates := make(map[string]TemplateContext)
|
||||
fs.WalkDir(r.routesFS, ".", func(path string, d fs.DirEntry, err error) error {
|
||||
if !d.IsDir() {
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
<title>KGPZ - Ausgaben {{ .model.year }}</title>
|
||||
1
views/layouts/components/_menu.gohtml
Normal file
1
views/layouts/components/_menu.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
this is the menu
|
||||
@@ -13,14 +13,6 @@
|
||||
<link rel="icon" href="/assets/logo/favicon.png" />
|
||||
{{ end }}
|
||||
|
||||
{{ if (and .name .title) }}
|
||||
<title>{{ .name }} - {{ .title }}</title>
|
||||
{{ else if .name }}
|
||||
<title>{{ .name }}</title>
|
||||
{{ else if .title }}
|
||||
<title>{{ .title }}</title>
|
||||
{{ end }}
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/style.css" />
|
||||
<link href="/assets/css/remixicon.css" rel="stylesheet" />
|
||||
@@ -35,6 +27,10 @@
|
||||
</head>
|
||||
|
||||
<body class="w-full h-full" hx-ext="response-targets">
|
||||
{{ block "_menu" . }}
|
||||
<!-- Default app menu... -->
|
||||
{{ end }}
|
||||
|
||||
{{ block "body" . }}
|
||||
<!-- Default app body... -->
|
||||
{{ end }}
|
||||
|
||||
@@ -1 +1 @@
|
||||
<title>KGPZ - Impressum & Datenschutz</title>
|
||||
<title>KGPZ – Impressum & Datenschutz</title>
|
||||
|
||||
@@ -1 +1 @@
|
||||
<title>KGPZ - Geschichte & Edition</title>
|
||||
<title>KGPZ – Geschichte & Edition</title>
|
||||
|
||||
1
views/routes/head.gohtml
Normal file
1
views/routes/head.gohtml
Normal file
@@ -0,0 +1 @@
|
||||
<title>KGPZ – Ausgaben {{ .model.Year }}</title>
|
||||
@@ -1 +1 @@
|
||||
<title>KGPZ - Ausgabe {{ .model.Year }}&verythinsp;/&verythinsp;{{ .model.No }}</title>
|
||||
<title>KGPZ – Ausgabe {{ .model.No }} / {{ .model.Year }}</title>
|
||||
|
||||
@@ -1 +1 @@
|
||||
<title>KGPZ - Kontakt</title>
|
||||
<title>KGPZ – Kontakt</title>
|
||||
|
||||
@@ -1 +1 @@
|
||||
<title>KGPZ - Zitation</title>
|
||||
<title>KGPZ – Zitation</title>
|
||||
|
||||
Reference in New Issue
Block a user