82 lines
3.3 KiB
HTML
82 lines
3.3 KiB
HTML
{#- HTML Calender Renderer for Startpage -#}
|
|
{%- set pages = site.query('/').include_undiscoverable(true).all() -%}
|
|
{%- set counter = ['1'] -%}
|
|
{%- for page in pages -%}
|
|
{%- if page._path == this.calendar_name -%}
|
|
{%- for blk in page.dates.blocks|sort(attribute='ende', reverse = False) -%}
|
|
{%- if blk.start.strftime('%Y%m%d%H%M') > none|datetimeformat('yyyyMMddhhmm') -%}
|
|
{%- if counter == ['1'] -%}
|
|
<table class="template" id="tourdaten">
|
|
<thead>
|
|
<tr>
|
|
<th>Datum</th>
|
|
<th>Veranstaltung</th>
|
|
<th>Ort</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{%- endif -%}
|
|
{%- if counter.append('X') -%}
|
|
{#- Counter zum zaehlen ob es mehr wie 1 Temrin gibt -#}
|
|
{%- endif -%}
|
|
<tr>
|
|
<th>
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} <s>
|
|
{% else %} <i>
|
|
{% endif %}
|
|
{%- if blk.start.strftime('%d.%m') == blk.ende.strftime('%d.%m') -%}
|
|
{{- '\n ' -}}
|
|
{{ blk.start.strftime('%d.%m.%y %H') }} - {{ blk.ende.strftime('%H') }} Uhr
|
|
{%- else -%}
|
|
{{- '\n ' -}}
|
|
{{ blk.start.strftime('%d.%m') }} - {{ blk.ende.strftime('%d.%m.%Y') }}
|
|
{%- endif -%}
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} </s>
|
|
{% else %} </i>
|
|
{% endif %}
|
|
{{- '\n ' -}} </th>
|
|
{{- '\n ' -}} <th>
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} <s>
|
|
{% else %} <i>
|
|
{% endif %}
|
|
{{- '\n ' -}} <a href="{{ blk.url }}" title="{{ blk.description|replace("|", " ") }}">
|
|
{{- blk.event -}}
|
|
</a>
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%}
|
|
</s>
|
|
{% else %}
|
|
</i>
|
|
{% endif %}
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} </s>
|
|
{% else %} </i>
|
|
{% endif %}
|
|
{{- '\n ' -}} </th>
|
|
{{- '\n ' -}} <th>
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} <s>
|
|
{% else %} <i>
|
|
{% endif %}
|
|
{{ blk.ort }}
|
|
{%- if blk.confirmed == 'true' -%}
|
|
{%- elif blk.confirmed == 'canceled' -%} </s>
|
|
{% else %} </i>
|
|
{% endif %}
|
|
</th>
|
|
{{- '\n ' -}} </tr>
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- endif -%}
|
|
{%- if counter|length < 1 and loop.index == 1 %}
|
|
{{- '\n ' -}} <p><i>Leider derzeit noch keine neuen Termine geplant!</i></p>
|
|
{%- endif -%}
|
|
{%- endfor %}
|
|
{%- if counter|length > 1 -%}
|
|
{{- '\n ' -}} </tbody>
|
|
{{- '\n ' -}}</table>
|
|
{{- '\n ' -}}<br/>
|
|
{%- endif -%}
|