// Into the Wild — Past Editions (Camino 01, 02, 03) function PastEditions() { const editions = [ { n: "01", year: "2023", name: "Into the Wild I", sub: "The pioneers", days: "4 days · 115 km", cohort: "16 adventurers · 4 teams", body: "Our first edition. A classic introduction on the last stretch of the French Way. We learned that waymarks are a gift and that priests can be your best ally to sleep under a roof", tags: ["Yellow arrows", "Yellow arrows", "First cohort"], a: '#E8B84C', b: '#C44A1B', c: '#2D4A2B' }, { n: "02", year: "2024", name: "Into the Wild I", sub: "The pioneers", days: "4 days · 115 km", cohort: "16 adventurers · 4 teams", body: "Our first edition. A classic introduction on the last stretch of the French Way. We learned that waymarks are a gift and that blisters build faster friendships than any icebreaker.", tags: ["Yellow arrows", "Ocean swims", "Yellow arrows"], a: '#7FA9B8', b: '#E8B84C', c: '#C44A1B' }, { n: "03", year: "2025", name: "Into the Wild I", sub: "The pioneers", days: "4 days · 115 km", cohort: "16 adventurers · 4 teams", body: "Our first edition. A classic introduction on the last stretch of the French Way. We learned that waymarks are a gift and that priests can be your best ally to sleep under a roof", tags: ["Yellow arrows", "Quiet route", "The turn"], a: '#1E3320', b: '#EFE7D6', c: '#7FA9B8' }]; const cover = (e) => { const svg = ` // edition ${e.n} · ${e.year} `; return `url("data:image/svg+xml;utf8,${encodeURIComponent(svg)}")`; }; return (
08 Past editions — three Caminos, one growing collective

Three Caminos
before the forest.

Editions 01, 02 and 03 walked the yellow arrows to Santiago. Each generation added alumni, partners, and better answers to the same question: what do we actually need from an adventure?

{editions.map((e, i) =>
Nº {e.n} {e.year}

{e.name}

{e.sub}
{e.days} {e.cohort}

{e.body}

{e.tags.map((t, j) => {t})}
)}
Nº 04 2026

Fragas do Eume

One forest, six days
6 days · ~45 km 18 YOUTH · 5 COUNTRIES

The turn. No waymarks this time. Teambuilding, experiential adventure, reflection... all in one of the last Atlantic rainforests in Europe.

Apply to edition 04 →
); } Object.assign(window, { PastEditions });