blog/pelicanconf.py

40 lines
776 B
Python
Raw Normal View History

2020-04-10 12:12:13 +00:00
AUTHOR = 'Marc Beninca'
SITENAME = 'RWX work'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'en'
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
2020-04-11 09:32:30 +00:00
THEME = 'themes/dark'
2020-04-11 09:31:31 +00:00
2020-04-11 23:58:16 +00:00
HOSTS = (
2020-04-12 01:24:27 +00:00
('rwx.work', 'https://blog.rwx.work'),
2020-04-11 23:58:16 +00:00
('envs.net', 'https://marc.envs.net'),
('tilde.team', 'https://marc.tilde.team'),
('tildecities.com', 'https://marc.tildecities.com'),
('tilde.institute', 'https://marc.tilde.institute'),
('remotes.club', 'https://marc.remotes.club'),
)
2020-04-12 01:44:19 +00:00
SITES = (
('rwx.work', 'https://rwx.work'),
('marc-beninca.fr', 'https://marc-beninca.fr'),
)
2020-04-11 06:28:12 +00:00
SOCIAL = (
2020-04-12 00:10:49 +00:00
('linkedin', 'https://www.linkedin.com/in/marc-beninca'),
2020-04-11 06:28:12 +00:00
)
2020-04-10 12:12:13 +00:00
DEFAULT_PAGINATION = False
2020-04-11 06:22:41 +00:00
RELATIVE_URLS = True