This commit is contained in:
Stephan 2019-11-12 19:46:04 +01:00
parent 83464a1cf4
commit 6f95393409
3 changed files with 22 additions and 22 deletions

View file

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

View file

@ -1,5 +1,5 @@
{% macro field(name, value='', type='text') %} {% macro field(name, value='', type='text') %}
<div class="field"> <div class="field">
<input type="{{ type }}" name="{{ name }}" value="{{ value | escape }}" /> <input type="{{ type }}" name="{{ name }}" value="{{ value | escape }}" />
</div> </div>
{% endmacro %} {% endmacro %}

View file

@ -1,4 +1,4 @@
<!-- footer.partial --> <!-- footer.partial -->
<footer class="footer_site"> <footer class="footer_site">
<div id="end"></div> <div id="end"></div>
</footer> </footer>