- Update hippie styles - Move top element for new page to header macro - Reassign ui and example collections
16 lines
No EOL
433 B
Text
16 lines
No EOL
433 B
Text
{% macro coord(id, text = 'X: #, Y: ##') %}
|
|
<span id="{{ id }}">{{ text }}</span>
|
|
{% endmacro %}
|
|
|
|
{% macro time(id, text = '00:00:00', postfix = ' Uhr') %}
|
|
<span id="{{ id }}">{{ text }}</span><span>{{ postfix }}</span>
|
|
{% endmacro %}
|
|
|
|
{% macro date(id) %}
|
|
<span id="{{ id }}">
|
|
<span id="day">Wochentag</span>,
|
|
<span id="dayNumb">##</span>.
|
|
<span id="month">Monat</span>
|
|
<span id="year">####</span>
|
|
</span>
|
|
{% endmacro %} |