|
@@ -1,6 +1,6 @@
|
|
{{ template "document.html" . }}
|
|
{{ template "document.html" . }}
|
|
|
|
|
|
-{{ define "document-title" }}{{ .Page.Title }} - Glance{{ end }}
|
|
|
|
|
|
+{{ define "document-title" }}{{ .Page.Title }} - {{ .App.Config.Branding.Name }}{{ end }}
|
|
|
|
|
|
{{ define "document-head-before" }}
|
|
{{ define "document-head-before" }}
|
|
<script>
|
|
<script>
|
|
@@ -28,7 +28,7 @@
|
|
<div class="header-container content-bounds">
|
|
<div class="header-container content-bounds">
|
|
<div class="header flex padding-inline-widget widget-content-frame">
|
|
<div class="header flex padding-inline-widget widget-content-frame">
|
|
<!-- TODO: Replace G with actual logo, first need an actual logo -->
|
|
<!-- TODO: Replace G with actual logo, first need an actual logo -->
|
|
- <div class="logo">G</div>
|
|
|
|
|
|
+ <div class="logo">{{ .App.Config.Branding.ShortName }}</div>
|
|
<div class="nav flex grow">
|
|
<div class="nav flex grow">
|
|
{{ template "navigation-links" . }}
|
|
{{ template "navigation-links" . }}
|
|
</div>
|
|
</div>
|
|
@@ -57,6 +57,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
+{{ if .App.Config.Branding.Show }}
|
|
<div class="footer flex items-center flex-column">
|
|
<div class="footer flex items-center flex-column">
|
|
<div>
|
|
<div>
|
|
<span class="size-h3">Glance</span> ({{ .App.Version }})
|
|
<span class="size-h3">Glance</span> ({{ .App.Version }})
|
|
@@ -67,3 +68,4 @@
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
+{{ end }}
|