generated from jeremydaly/eleventy-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheleventy.config.js
95 lines (75 loc) · 2.08 KB
/
eleventy.config.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const {
formatDistanceToNow,
format,
getYear,
isToday,
isYesterday,
differenceInDays,
differenceInWeeks,
differenceInMonths
} = require("date-fns");
module.exports = function (config) {
// Pass-through images and processed CSS
config.addPassthroughCopy("./src/images");
config.addPassthroughCopy("./_site/css");
// Add Date filters
config.addFilter("date", (dateObj) => {
if (!dateObj) return "";
const date = new Date(dateObj);
return format(date, "d MMM yyyy");
});
config.addFilter("dateFromNow", (dateObj) => {
if (!dateObj) return "";
const date = new Date(dateObj);
const now = new Date();
const daysDiff = differenceInDays(now, date);
const weeksDiff = differenceInWeeks(now, date);
const monthsDiff = differenceInMonths(now, date);
switch (true) {
case isToday(date):
return "Today";
case isYesterday(date):
return "Yesterday";
case daysDiff === 7:
return "A week ago";
case weeksDiff === 1:
return "Last week";
case monthsDiff === 1:
return "Last month";
default:
return formatDistanceToNow(date, { addSuffix: true });
}
});
config.addFilter("sitemapDate", (dateObj) => {
if (!dateObj) return "";
const date = new Date(dateObj);
return date.toISOString();
});
config.addFilter("year", () => {
return getYear(new Date());
});
// Add pages collection
config.addCollection("pages", function (collections) {
return collections.getFilteredByTag("page").sort(function (a, b) {
return a.data.order - b.data.order;
});
});
config.addCollection("was", function (collectionApi) {
return collectionApi.getFilteredByTag("was").reverse();
});
config.addCollection("tagList", function (collectionApi) {
let tagSet = new Set();
collectionApi.getAll().forEach(item => {
if ("tags" in item.data) {
item.data.tags.forEach(tag => tagSet.add(tag));
}
});
return [...tagSet];
});
return {
markdownTemplateEngine: "njk",
dir: {
input: "src"
},
};
};