basically releasable

This commit is contained in:
Joshua Seigler 2024-06-06 01:32:55 -04:00
parent 04cf8eb646
commit 0314b6a427
41 changed files with 281 additions and 1760 deletions

View file

@ -0,0 +1,10 @@
const { DateTime } = require("luxon");
module.exports = {
layout: "post.njk",
permalink: "/posts/{{ title | slugify }}/",
tags: ["posts"],
eleventyComputed: {
dateString: ({ page }) => DateTime.fromJSDate(page.date, { zone: 'utc' }).toLocaleString(DateTime.DATE_FULL)
}
};