-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.config.example.py
78 lines (75 loc) · 2.61 KB
/
.config.example.py
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
#!/usr/bin/env python
# NOTE: paths are relevant to the pb.py script
config = {
"software": "PyBlog",
"software_version": "v0.1",
"global_title": "My Python Blog",
"global_description": "A blog about astronauts eating pepperoni!",
"global_url": "http://astronuts.sh/blog",
"global_licence": "TBD",
# FEATURES' VARS:
"twtxt": {
# NOTE: this info was derived from yarn.social style twtxt.txt files!
"nick": "author",
"url": "http://astronuts.sh/twtxt.txt",
"prev": "at this moment i don't know what this is/does",
"avatar": "http://astronuts.sh/images/avatar.png",
"following": 3781,
# "links": ["https://yahoo.ca","https://the8woodcutter.sh","https://xe.com"],
# "follows": ["akoizumi https://social.chaotic.ninja/user/akoizumi/twtxt.txt","chunkimo https://twtxt.net/user/chunkimo/twtxt.txt"],
# "posts": ["2023-04-21T00:00:00Z\tMy post! I says!"]
},
"google_analytics": {
# Optional
},
"fediverse": {
"webfinger": "@chunk@mstdn.social"
}
"twitter": {
# Optional
},
"feedburner": {
# Optional
},
"disqus": {
# Optional
},
"gravatar": {
"email": "author@gravatar.place"
},
# PAGE ELEMENTS:
"profile": {
"username": "author",
"homeland": "earth",
"gender": "unspecified",
"age": "33",
"photo": "images/my-photo.png",
"tagline": "I luv pepperonies, and cats and fluffy clouds",
"bio": "I luv pepperoni so much that instead of walking around the block with a cigarette in my mouth I have a pepperoni, because I quite that awful habit :) Did I mention I like cats? Cats are cool!",
"url": "https://the8woodcutter.sh",
"email": "author@astronuts.sh"
},
"template_options": {
"use_meta": True,
"use_css": True,
"use_extra_css": False,
"use_header": True,
"use_nav": True,
"use_footer": True,
"use_js_head": False,
"use_js_foot": False
},
# all of the other html files go into body.html
"template_block_locations": {
"meta_location": "template/meta.html",
"css_location": "template/css/blog.css",
"css_extra_location": "template/css/extra.css",
"header_location": "template/header.html",
"nav_location": "template/nav.html",
"footer_location": "template/footer.html"
"js_head_location": "template/js/js_head.js",
"js_foot_location": "template/js/js_foot.js"
"body_location": "template/body.html",
"blogs_location": "template/blogs.html"
}
}