1
0
mirror of https://github.com/templis/lugtuebingen.git synced 2024-11-22 12:21:43 +01:00

(Grav GitSync) Automatic Commit from templis

This commit is contained in:
templis 2018-04-21 00:58:43 +02:00 committed by GitSync
parent f18d760aab
commit 6fc50a9139

View File

@ -24,15 +24,21 @@ event:
coordinates: '9.047282, 48.523950' coordinates: '9.047282, 48.523950'
--- ---
--- {% set events =
title: Events page.collection({
content: 'items':{
items: '@taxonomy.type':'event',
'@taxonomy': }
type: event })
order: .dateRange(datetools.startOfMonth, datetools.endOfMonth)
by: date .order('date', 'asc')
dir: asc %}
limit: '10'
pagination: true <ul>
--- {% for event in events %}
<li class="h-event">
<a href="{{ event.url }}" class="p-name u-url">{{ event.title }}</a>
<time class="dt-start" datetime="{{ event.header.event.start|date('c') }}">{{ event.header.event.start|date('F j, Y') }}</time>
</li>
{% endfor %}
</ul>