-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpelicanconf.py
More file actions
44 lines (40 loc) · 1.29 KB
/
Copy pathpelicanconf.py
File metadata and controls
44 lines (40 loc) · 1.29 KB
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
AUTHOR = "Jennifer Wilcox"
SITENAME = "ALTGO"
SITESUBTITLE = "A collection of support groups, resources, and legal help for Alabamians included in the transgender umbrella."
SITEURL = "https://altgo.us"
GITHUB_URL = "https://github.com/JennToo/altgo-us"
LOGO = "https://altgo.us/theme/images/logo.png"
PATH = "content"
TIMEZONE = "America/Chicago"
DEFAULT_LANG = "en"
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
CATEGORY_FEED_ATOM = None
DEFAULT_PAGINATION = False
FEED_ALL_ATOM = None
LINKS = None
TRANSLATION_FEED_ATOM = None
SEO_REPORT = True
SEO_ENHANCER = True
SEO_ENHANCER_OPEN_GRAPH = True
SEO_ENHANCER_TWITTER_CARDS = True
SITEMAP = {
"format": "xml",
"exclude": ["tags.html", "categories.html", "authors.html", "archives.html"],
}
STATIC_PATHS = ["extra_static"]
EXTRA_PATH_METADATA = {
"extra_static/favicon.ico": {"path": "favicon.ico"},
"extra_static/robots.txt": {"path": "robots.txt"},
"extra_static/.htaccess": {"path": ".htaccess"},
"extra_static/.well-known/.htaccess": {"path": ".well-known/.htaccess"},
}
MARKDOWN = {
"extension_configs": {
"markdown.extensions.toc": {},
"markdown.extensions.codehilite": {"css_class": "highlight"},
"markdown.extensions.extra": {},
"markdown.extensions.meta": {},
},
"output_format": "html5",
}