{{# Events Page Template #}} {{ layout = 'layouts/default' }} {{# FEATURED EVENT - next upcoming, or most recent #}} Events {{ collection:events orderby="date:asc" limit="1" since="now" as="upcoming" }}{{ /collection:events }} {{ if upcoming }} {{ collection:events orderby="date:asc" limit="1" since="now" }} {{ partial:partials/featured-event :event="this" }} {{ /collection:events }} {{ else }} {{ collection:events orderby="date:desc" limit="1" }} {{ partial:partials/featured-event :event="this" }} {{ /collection:events }} {{ /if }} {{# ALL EVENTS GRID - 3 per row #}} {{ collection:events orderby="date:desc" as="all_events" }} {{ all_events }} {{ date format="j" }} {{ date format="F Y" }} {{ title }} - ago {{ location ?? 'Ferizaj' }} {{ /all_events }} {{ /collection:events }}