-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
40 lines (40 loc) · 1.45 KB
/
config.json
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
{
"routes": {
"index" : "/",
"publications" : "/publications/",
"blogindex" : "/blog/",
"blogarchives" : "/blog/archives/",
"blogrss" : "/blog/rss.xml",
"post" : "/blog/{year}/{month}/{slug}/",
"blogtag" : "/blog/tag/{tag}/",
"blogtags" : "/blog/tags/",
"sitemap" : "/sitemap.xml",
"resume" : "/resume/",
"services" : "/services/"
},
"blogpost_template": "blogpost.html",
"source_dir": ".",
"output_dir": "output",
"sitename": "mhlakhani's website",
"sources": {
"static/css/*.css": "StaticContent",
"static/js/*.js": "StaticContent",
"static/pdf/*.pdf": "StaticContent",
"static/img/**/*.png": "StaticContent",
"static/img/**/*.jpg": "StaticContent",
"static/img/**/*.jpeg": "StaticContent",
"templates/*.html": "Template",
"content/publications.html": "DynamicContentSinglePage",
"content/index.html": "DynamicContentSinglePage",
"content/blogindex.html": "DynamicContentSinglePage",
"content/resume.html": "DynamicContentSinglePage",
"content/services.html": "DynamicContentSinglePage",
"content/blogtags.html": "DynamicContentSinglePage",
"content/**/*.md": "DynamicContentBlogPost",
"content/blogtag.html": "DynamicContentBlogpostTagPage",
"content/blogarchives.html": "DynamicContentBlogpostArchivePage",
"content/blogrss.xml": "DynamicContentBlogpostRssPage",
"content/sitemap.xml": "DynamicContentSitemap"
},
"site_url": "https://mhlakhani.com"
}