23 lines
No EOL
679 B
Text
23 lines
No EOL
679 B
Text
{% macro status(email = 'admin@domain.tld', app = 'Application', version = 'ver.s.ion', system = 'System Name', domain = 'domain.tld:port') %}
|
|
<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>
|
|
{% endmacro %}
|
|
|
|
{% macro pinned(pos = 'bottom') %}
|
|
<footer class="pos_abs pin_{{ pos }} pin_right pin_left">
|
|
<p class="txt_center">Unten fixiert</p>
|
|
</footer>
|
|
{% endmacro %}
|
|
|
|
{% macro main() %}
|
|
<footer class="footer_site">
|
|
<div id="end"></div>
|
|
</footer>
|
|
{% endmacro %} |