fix(webui): correct layout rendering; select content template by name and include via layout; fix navbar/footer appearance

This commit is contained in:
Thomas Cravey 2025-08-17 13:31:18 -05:00
parent 3ed38031be
commit ab11490807
4 changed files with 12 additions and 6 deletions

View file

@ -1,4 +1,4 @@
{{ define "content" }}
{{ define "dashboard" }}
<main class="container">
<aside class="sidebar">
<nav id="chanlist"></nav>
@ -8,5 +8,5 @@
</section>
</main>
{{ end }}
{{ template "layout.tmpl" . }}
{{/* layout executes us via .Content */}}

View file

@ -19,7 +19,11 @@
</ul>
</nav>
</header>
{{ block "content" . }}{{ end }}
{{ if eq .Content "dashboard" }}
{{ template "dashboard" . }}
{{ else if eq .Content "summarizer" }}
{{ template "summarizer" . }}
{{ end }}
<footer><small>{{ .Version }} ({{ .Commit }})</small></footer>
</body>
</html>

View file

@ -1,4 +1,4 @@
{{ define "content" }}
{{ define "summarizer" }}
<main class="container">
<article>
<h3>On-demand summarization</h3>
@ -10,5 +10,5 @@
</article>
</main>
{{ end }}
{{ template "layout.tmpl" . }}
{{/* layout executes us via .Content */}}