diff --git a/_config/filters.js b/_config/filters.js index 1269aa7..23ea0ed 100644 --- a/_config/filters.js +++ b/_config/filters.js @@ -1,3 +1,5 @@ +import { DateTime } from "luxon"; + export default function(eleventyConfig) { // Return the keys used in an object eleventyConfig.addFilter("getKeys", target => { @@ -9,33 +11,44 @@ export default function(eleventyConfig) { let tagline; switch (tag) { case "animals and the outdoors": - tagline = "grass touchin'"; + tagline = "touchin' grass"; break; case "art and crafts": - /* tagline = */ + tagline = "makin' stuff"; break; case "food and drink": tagline = "good eatin'"; break; case "history and science": - /* tagline = */ + tagline = "book learnin'" break; - case "home improvement and diy": + case "repair and diy": tagline = "fixin' stuff"; break; case "interpersonal and life": - /* tagline = */ + tagline = "better livin'"; break; case "technology": tagline = "computer touchin'"; break; - case "writing, editing, and literature": - /* tagline = */ + case "writing editing and literature": + tagline = "wordsmithin'"; break; }; return tagline; }); + /* For