-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eleventy.js
45 lines (36 loc) · 1.16 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
const dateFns = require('date-fns-tz');
module.exports = eleventyConfig => {
eleventyConfig.addFilter('raw', o => JSON.stringify(o, null, 2));
eleventyConfig.addFilter('fdate', (date, tz) => {
return dateFns.formatInTimeZone(date, tz, 'MMMM d, y');
});
eleventyConfig.addFilter('ftime', (date, tz) => {
return dateFns.formatInTimeZone(date, tz, 'h:mm aa');
});
eleventyConfig.addCollection('rows', collection => {
return collection
.getAll()
.filter(r => r.inputPath.match(/\/rows\//) !== null)
.sort((a, b) => a.data.order - b.data.order);
});
eleventyConfig.addCollection('nav', collection => {
return collection
.getAll()
.filter(r => r.inputPath.match(/\/rows\//) !== null && r.data.title !== undefined)
.sort((a, b) => a.data.order - b.data.order);
});
eleventyConfig.addPassthroughCopy('_redirects');
eleventyConfig.addPassthroughCopy('netlify.toml');
eleventyConfig.addPassthroughCopy('src/assets/img');
eleventyConfig.addWatchTarget('./src/assets/scss/**/*.scss');
return {
templateFormats: [
'md',
'html',
'11ty.js'
],
dir: {
input: './src',
}
}
}