{% extends 'partials/base.html.twig' %} {% block content %} {% set trips_page = grav.pages.find('/trips') %} {# Owner-only page (admin login), so show unpublished trips too — no .published() filter — and order newest first by trip start date so the current/next trip is at the top. #} {% set trips = trips_page ? trips_page.children.order('header.date_start', 'desc') : [] %}

GPX Files

{% if trips is empty %}

No trips found.

{% else %} {% for trip in trips %}

{{ trip.title }}

Loading…

{% endfor %} {% endif %}
{% endblock %}