diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index d2e30f8..322bb44 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -911,6 +911,12 @@ body::after { /* ── Trip page filter bar ────────────────────────────────────────────────────── */ +.feed-sort-bar { + display: flex; + justify-content: flex-end; + margin-bottom: var(--space-4); +} + .trip-filter-bar { display: flex; align-items: center; @@ -1738,12 +1744,18 @@ body::after { /* ── Stories listing ──────────────────────────────────────── */ .stories-listing { padding: var(--space-10) 0; } +.stories-listing__header { + display: flex; + align-items: baseline; + justify-content: space-between; + margin-bottom: var(--space-10); +} .stories-listing__heading { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 400; color: var(--color-ink); - margin-bottom: var(--space-10); + margin-bottom: 0; } .stories-grid { display: grid; diff --git a/themes/intotheeast/templates/dailies.html.twig b/themes/intotheeast/templates/dailies.html.twig index 22eed21..8834324 100644 --- a/themes/intotheeast/templates/dailies.html.twig +++ b/themes/intotheeast/templates/dailies.html.twig @@ -14,7 +14,8 @@ {% set all_items = all_items|merge([{'type': 'story', 'page': s, 'date': s.date}]) %} {% endfor %} -{# No sort needed: page.collection() returns journal entries date-descending per dailies.md config. Dailies has no stories, so no re-merge sort is needed. #} +{# page.collection() returns date-descending; reverse to match ascending default on trip page. #} +{% set all_items = all_items|reverse %} {# Collect GPS entries for mini-map #} {% set map_entries = [] %} @@ -87,6 +88,9 @@ feedMap.on('load', function () { {% endif %} +
No stories yet — check back soon.
{% endif %}