707283da51
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 1m57s
29 lines
855 B
JavaScript
29 lines
855 B
JavaScript
module.exports = function(eleventyConfig) {
|
|
eleventyConfig.addFilter('parseDate', dateString => new Date(dateString));
|
|
|
|
eleventyConfig.addFilter('dateDisplay', date => new Date(date).toLocaleDateString('en-GB', {
|
|
"dateStyle": "short"
|
|
}));
|
|
|
|
eleventyConfig.addFilter('dateTimeDisplay', date => new Date(date).toLocaleString('en-GB', {
|
|
'dateStyle': 'short',
|
|
'timeStyle': 'short',
|
|
}));
|
|
|
|
eleventyConfig.addFilter('timeDisplay', date => new Date(date).toLocaleTimeString('en-GB', {
|
|
'hour': '2-digit',
|
|
'minute': 'numeric',
|
|
'hour12': true
|
|
}));
|
|
|
|
eleventyConfig.addGlobalData('isCSSNakedDay', () => {
|
|
const dateObj = new Date();
|
|
|
|
return dateObj.getMonth() === 3 && dateObj.getFullYear() === 2024 && dateObj.getDate() === 9;
|
|
});
|
|
|
|
|
|
|
|
// eleventyConfig.addFilter('rfc3339', date => new Date(date).toISOString());
|
|
}
|