Files
signage/templates/_footer.html
2026-06-07 12:35:10 +02:00

17 lines
856 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- ═══════════════════════════════════════════════════
FOOTER Wird von allen Seiten eingebunden.
Zeigt Autor, Copyright, Version und Hostname.
Erwartet im Kontext: year, version, hostname
═══════════════════════════════════════════════════ -->
<footer class="app-footer">
<div class="app-footer-inner">
<span>Autor Erik Thiele</span>
<span class="app-footer-separator">|</span>
<span>&copy; {{ year }} CANCOM GmbH</span>
<span class="app-footer-separator">|</span>
<span>Version {{ version }}</span>
<span class="app-footer-separator">|</span>
<span>Host {{ hostname }}</span>
</div>
</footer>