-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
79 lines (67 loc) · 1.93 KB
/
pelicanconf.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
79
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# general config
AUTHOR = "Nicholas Zwart"
SITENAME = "gpilab.com"
SITETITLE = "GPI"
SITESUBTITLE = "Graphical Programming Interface"
SITEURL = ""
STATIC_PATHS = ["images", "static"]
PAGE_URL = "{slug}/"
PAGE_SAVE_AS = "{slug}/index.html"
ARTICLE_URL = "{date:%Y}/{date:%m}/{slug}/"
ARTICLE_SAVE_AS = "{date:%Y}/{date:%m}/{slug}/index.html"
PATH = "content"
TIMEZONE = "America/Phoenix"
DEFAULT_LANG = "en"
DEFAULT_PAGINATION = 10
# sitemap
PLUGINS = [
"extended_sitemap",
]
EXTENDED_SITEMAP_PLUGIN = {
"priorities": {"index": 1.0, "articles": 0.8, "pages": 0.5, "others": 0.4},
"changefrequencies": {
"index": "daily",
"articles": "weekly",
"pages": "monthly",
"others": "monthly",
},
}
# links
GITHUB_URL = "https://github.com/gpilab"
YOUTUBE_URL = "https://www.youtube.com/user/gpilab"
DOCUMENTATION_URL = "https://docs.gpilab.com"
# footer
COPYRIGHT = "2022 Nicholas Zwart, Jim Pipe, Ashley Anderson, Daniel Borup, Abdulrahman Alfayad"
# FOOTER_TEXT = 'hello'
# favicon
EXTRA_PATH_METADATA = {
"images/favicon.ico": {"path": "favicon.ico"},
"images/favicon.png": {"path": "favicon.png"},
"static/CNAME": {"path": "CNAME"},
}
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
# theme specific
THEME = "./theme/clean-blog"
HEADER_COVER = "/images/banner.jpg"
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
LINKS = (
("Pelican", "http://getpelican.com/"),
("Python.org", "http://python.org/"),
("Jinja2", "http://jinja.pocoo.org/"),
("You can modify those links in your config file", "#"),
)
# Social widget
SOCIAL = (
("You can add links in your config file", "#"),
("Another social link", "#"),
)