-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpelicanconf.py
53 lines (38 loc) · 1.21 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
AUTHOR = "Atul Vinayak"
SITENAME = "a.tulv.in"
SITEURL = ""
PATH = "content"
TIMEZONE = "America/Los_Angeles"
DEFAULT_LANG = "en"
THEME = "oaitheme"
# 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 = (
("GitHub", "https://github.com/avinayak"),
("LinkedIn", "https://www.linkedin.com/in/atulvinayak"),
("Instagram", "https://www.instagram.com/avinayak__"),
("BlueSky", "https://bsky.app/profile/a.tulv.in"),
("Twitter", "https://twitter.com/atulvinayak"),
)
# Social widget
ABOUT = (
("My Resume", "https://goo.gl/D2GXJ9"),
("Photography", "https://unsplash.com/collections/519921/s'ok-pics"),
("Visual References", "https://v.tulv.in"),
("Ko-fi", "https://ko-fi.com/atulvinayak"),
)
DEFAULT_PAGINATION = 15
STATIC_PATHS = ["media", "admin"]
READERS = {'html': None}
EXTRA_PATH_METADATA = {
"admin/index.html": {"path": "admin/index.html"},
}
PLUGINS = ["pelican.plugins.render_math"]
MATH_JAX = {"color": "blue", "align": "left"}
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True