Added eleventy config to add public folder passthrough, updated pack.json to serve content instead of compile, added plugins/metadata to rendering engine
20 lines
418 B
JavaScript
20 lines
418 B
JavaScript
const date = new Date();
|
|
const formattedDate = date.toLocaleDateString('en-GB', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric'
|
|
});
|
|
|
|
export default {
|
|
author: {
|
|
name: "Cyper",
|
|
url: "https://cyper.cc"
|
|
},
|
|
|
|
title: "Cy by Side!",
|
|
url: "https://cy.cyper.cc/",
|
|
language: "en",
|
|
description: "Cy by Side with Cyper: Tangents, Tech, and Thoughtful Takes.",
|
|
date: formattedDate,
|
|
year: date.getFullYear()
|
|
} |