site/pelicanconf.py

55 lines
1.3 KiB
Python
Raw Normal View History

2020-04-10 14:12:13 +02: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 11:32:30 +02:00
THEME = 'themes/dark'
2020-04-11 11:31:31 +02:00
2020-04-12 01:58:16 +02:00
HOSTS = (
2020-04-12 03:24:27 +02:00
('rwx.work', 'https://blog.rwx.work'),
2020-04-12 11:15:34 +02:00
('envs.net', 'https://mspe.envs.net'),
('tilde.team', 'https://mspe.tilde.team'),
('tildecities.com', 'https://mspe.tildecities.com'),
('tilde.institute', 'https://mspe.tilde.institute'),
('fr.tild3.org', 'https://mspe.fr.tild3.org'),
# ('radiofreqs.space', 'https://mspe.radiofreqs.space'),
('remotes.club', 'https://mspe.remotes.club'),
('thunix.net', 'https://thunix.net/~mspe'),
2020-04-12 05:32:13 +02:00
('tilde.club', 'https://tilde.club/~mspe'),
2020-04-12 11:15:34 +02:00
('tilde.town', 'https://tilde.town/~mspe'),
('tilde.pw', 'https://tilde.pw/~mspe'),
('aussies.space', 'https://aussies.space/~mspe'),
2020-04-12 05:39:48 +02:00
('squiggle.city', 'https://squiggle.city/~mspe'),
2020-04-12 01:58:16 +02:00
)
2020-04-12 03:44:19 +02:00
SITES = (
('rwx.work', 'https://rwx.work'),
('marc-beninca.fr', 'https://marc-beninca.fr'),
2020-04-12 11:15:34 +02:00
('tilde.link', 'https://tilde.link'),
2020-04-12 03:44:19 +02:00
)
2020-04-12 11:40:01 +02:00
GIT = (
('tildegit.org', 'https://tildegit.org/marc'),
('framagit.org', 'https://framagit.org/marc-beninca'),
)
2020-04-11 08:28:12 +02:00
SOCIAL = (
2020-04-12 02:10:49 +02:00
('linkedin', 'https://www.linkedin.com/in/marc-beninca'),
2020-04-11 08:28:12 +02:00
)
2020-04-10 14:12:13 +02:00
DEFAULT_PAGINATION = False
2020-04-11 08:22:41 +02:00
RELATIVE_URLS = True