← mturro/poem

commit c58ff9e

$ git show c58ff9e

reverse commit log order on index: oldest first

2026-04-18

web/build.js

@@ -199,7 +199,7 @@ function indexPage(poems, commits, readmeHtml) {
</li>`;
}).join('\n');
const logLines = commits.map(({ short, sha, date, message }) =>
const logLines = commits.slice().reverse().map(({ short, date, message }) =>
` <div class="log-line">` +
`<a href="${short}.html" class="sha">${short}</a>` +
`<span class="date">${date}</span>` +