12 lines
619 B
HTML
12 lines
619 B
HTML
{{ if not .App.Config.Branding.HideFooter }}
|
|
<footer class="footer flex items-center flex-column">
|
|
{{ if eq "" .App.Config.Branding.CustomFooter }}
|
|
<div>
|
|
<a class="size-h3" href="https://github.com/glanceapp/glance" target="_blank" rel="noreferrer">Glance</a> {{ if ne "dev" .App.Version }}<a class="visited-indicator" title="Release notes" href="https://github.com/glanceapp/glance/releases/tag/{{ .App.Version }}" target="_blank" rel="noreferrer">{{ .App.Version }}</a>{{ else }}({{ .App.Version }}){{ end }}
|
|
</div>
|
|
{{ else }}
|
|
{{ .App.Config.Branding.CustomFooter }}
|
|
{{ end }}
|
|
</footer>
|
|
{{ end }}
|