From a9843a0a2d699e841730063e53d5bcd3a5177b8b Mon Sep 17 00:00:00 2001 From: Mischa Date: Fri, 19 Jun 2026 15:40:15 +0200 Subject: [PATCH] feat: past trips archive with trip cards and entry counts --- themes/intotheeast/templates/trips.html.twig | 31 +++++++++++++------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/themes/intotheeast/templates/trips.html.twig b/themes/intotheeast/templates/trips.html.twig index 386cefb..05f9254 100644 --- a/themes/intotheeast/templates/trips.html.twig +++ b/themes/intotheeast/templates/trips.html.twig @@ -1,22 +1,33 @@ {% extends 'partials/base.html.twig' %} {% block content %} -

{{ page.title }}

+

Past Trips

{% set trips = page.children.published() %} {% if trips|length == 0 %} -

No trips yet.

+

No trips yet.

{% else %} - + {% endif %} {% endblock %}