-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcookiecutter.json
39 lines (39 loc) · 1.11 KB
/
cookiecutter.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
{
"SITE_URL": "http://example.com",
"output_path": "output",
"app_filename": "app.py",
"SITE_TITLE": "Untitled Site",
"project_slug": "{{cookiecutter.SITE_TITLE | slugify}}",
"skip_collection": false,
"skip_blog": false,
"_collection": {
"name": "Pages",
"routes": "./",
"content_path": "content/pages"
},
"_blog": {
"name": "Blog",
"routes": "blog",
"content_path": "content/blog"
},
"_content_folder_name": "content",
"_copy_without_render": [
"static",
"content",
"templates/_base.html",
"templates/page.html",
"templates/archive.html"
],
"_jinja2_env_vars": {
"lstrip_blocks": true,
"trim_blocks": true
},
"__prompts__": {
"SITE_URL": "What is the URL of your site:",
"SITE_TITLE": "The title of your site:",
"collection": "Do you want to have a collection of pages:",
"blog": "Do you want to have a blog:",
"app_filename": "What is the name of the main app file:",
"output_path": "Output Directory Name:"
}
}