diff --git a/_includes/layouts/edition.njk b/_includes/layouts/edition.njk index 146a0f8..d8dda0c 100644 --- a/_includes/layouts/edition.njk +++ b/_includes/layouts/edition.njk @@ -29,7 +29,7 @@ layout: base
- Volume {{ volume_number | roman }}, Edition No. {{ edition_number }} + Volume {{ volume | roman }}, Edition No. {{ edition_number }} Opelousas, Louisiana, {{ date | newsDate }} Price 3 Acorns
diff --git a/content/404.md b/content/404.md new file mode 100644 index 0000000..c5bc9b1 --- /dev/null +++ b/content/404.md @@ -0,0 +1,9 @@ +--- +layout: base +title: "Page Not Found" +permalink: /404.html +--- +
+ +

The article you seek was never filed, or the copy boy lost it. Return to today's edition.

+
diff --git a/content/editions/2026-07-03/index.md b/content/editions/2026-07-03/index.md index 43ef546..b858331 100644 --- a/content/editions/2026-07-03/index.md +++ b/content/editions/2026-07-03/index.md @@ -1,6 +1,6 @@ --- layout: edition -volume: I +volume: 1 edition_number: 1 date: 2026-07-03 status: published diff --git a/content/editions/2026-07-04/index.md b/content/editions/2026-07-04/index.md index 2649df2..aba8dd0 100644 --- a/content/editions/2026-07-04/index.md +++ b/content/editions/2026-07-04/index.md @@ -1,6 +1,6 @@ --- layout: edition -volume: I +volume: 1 edition_number: 2 date: 2026-07-04 status: published diff --git a/content/index.11tydata.js b/content/index.11tydata.js index 956a346..ff28527 100644 --- a/content/index.11tydata.js +++ b/content/index.11tydata.js @@ -2,6 +2,7 @@ module.exports = { eleventyComputed: { title: data => data.latest ? data.latest.data.title : "Printing Presses Warming Up", date: data => data.latest ? data.latest.date : new Date(), - edition_number: data => data.latest ? data.latest.data.edition_number : 0 + edition_number: data => data.latest ? data.latest.data.edition_number : 0, + volume: data => data.latest ? data.latest.data.volume : 1 } };