Add bookwyrm to /me

This commit is contained in:
N-Upchurch
2023-08-06 19:22:12 -05:00
parent 57673b33fa
commit 623bebce5e
2 changed files with 18 additions and 0 deletions

View File

@ -45,6 +45,9 @@ module.exports = function(eleventyConfig) {
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat('yyyy-LL-dd');
});
// Passthrough
eleventyConfig.addPassthroughCopy({ 'public/xsl/*': "/xsl/" });
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {
if(!Array.isArray(array) || array.length === 0) {