blob: a33d908031f49d86075e1859fa1d7a7eaa453adc (
plain) (
blame)
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 toml = require('@iarna/toml')
const eleventyNavigation = require('@11ty/eleventy-navigation')
const eleventyRss = require('@11ty/eleventy-plugin-rss')
filter_local_date = function(date) {
// yyyy-MM-dd
return date.getFullYear() + '-'
+ (date.getMonth() + 1).toString().padStart(2, '0') + '-'
+ date.getDate().toString().padStart(2, '0')
}
filter_rfc3339_datetime = function(date) {
// yyyy-MM-dd HH:mm:ssXXX
date.setSeconds(0, 0)
return date.toISOString().replace('T', ' ');
}
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(eleventyNavigation)
eleventyConfig.addPlugin(eleventyRss)
eleventyConfig.addPassthroughCopy('./css/')
eleventyConfig.addPassthroughCopy('./img/')
eleventyConfig.addFilter('local_date', filter_local_date)
eleventyConfig.addFilter('rfc3339_datetime', filter_rfc3339_datetime)
eleventyConfig.setFrontMatterParsingOptions({
engines: {
toml: toml.parse.bind(toml)
},
language: 'toml',
excerpt: true
})
return {
dir: {
input: 'src',
includes: '../_includes',
data: '../_data',
output: '_site'
}
}
}
|