tag pages, meta keywords

This commit is contained in:
Joshua Seigler 2025-06-21 18:50:15 -04:00
parent 04e4b0e51e
commit c008cedf7c
17 changed files with 61 additions and 15 deletions

View file

@ -6,6 +6,7 @@ export default {
eleventyComputed: {
date: "{{ page.date }}",
slug: "{{ page.slug }}",
keywords: (data) => data.tags.join(", "),
permalink: (data) => {
if (process.env.ELEVENTY_RUN_MODE !== "build") return data.permalink;
else return data.draft ? false : data.permalink;