-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eleventy.js
56 lines (47 loc) · 1.53 KB
/
.eleventy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const fs = require("fs");
const moment = require("moment-timezone");
const inclusiveLangPlugin = require("@11ty/eleventy-plugin-inclusive-language");
module.exports = (eleventyConfig) => {
eleventyConfig.addPassthroughCopy("src/css");
eleventyConfig.addPassthroughCopy("src/img");
eleventyConfig.addPassthroughCopy("src/js");
eleventyConfig.addPassthroughCopy("src/favicon.ico");
eleventyConfig.addPassthroughCopy("src/_redirects");
eleventyConfig.addPassthroughCopy("src/robots.txt");
// Shortcodes
eleventyConfig.addShortcode("readableDuration", (startedAt, endedAt) => {
const formattedStart = moment
.utc(startedAt)
.tz("Europe/London")
.format("dddd Do MMMM YYYY, HH:mm");
const formattedEnd = moment
.utc(endedAt)
.tz("Europe/London")
.format("HH:mm");
return `${formattedStart} to ${formattedEnd}`;
});
eleventyConfig.addPairedShortcode("isFuture", (content, startedAt) => {
return moment.utc(startedAt).isAfter(moment.utc()) ? content : "";
});
// Plugins
eleventyConfig.addPlugin(inclusiveLangPlugin);
eleventyConfig.setBrowserSyncConfig({
callbacks: {
ready: (err, browserSync) => {
const content_404 = fs.readFileSync("_site/404.html");
browserSync.addMiddleware("*", (req, res) => {
// Provides the 404 content without redirect.
res.write(content_404);
res.end();
});
},
},
});
return {
dir: {
includes: "_includes",
input: "src",
layouts: "_layouts",
},
};
};