fix: Clean up small things

- Rename footer macro
- Remove unnecessary div in components page
- Rename file comments
This commit is contained in:
sthag 2025-06-19 11:07:54 +02:00
parent 4fcd7742a8
commit 7f84235f08
8 changed files with 6 additions and 25 deletions

View file

@ -1,17 +0,0 @@
{% macro footer(email = 'admin@domain.tld', app = 'Application', version = 'ver.s.ion', system = 'System Name', domain = 'domain.tld:port', type) %}
{% if not type or type == 'status' %}
<footer class="pos_abs pin_bottom width_full">
<address class="txt_center">Kontakt:
<a class="lineLink" href="mailto:{{ email }}">{{ email }}</a>
* Server:
{{ app }}/{{ version }}
({{ system }}) * Domain:
{{ domain }}</address>
</footer>
{% else %}
<footer class="pos_abs pin_bottom width_full">
<p>Platzhalter unten fixiert</p>
</footer>
{% endif %}
{% endmacro %}