blog/pelicanconf.py

79 lines
2.4 KiB
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-12 09:15:34 +00:00
('envs.net', 'https://mspe.envs.net'),
2021-03-22 13:22:36 +00:00
('insomnia247.nl', 'https://mspe.insomnia247.nl'),
2020-04-12 09:15:34 +00:00
('tilde.team', 'https://mspe.tilde.team'),
2021-02-05 10:05:09 +00:00
('tilde.cafe', 'https://mspe.tilde.cafe'),
2020-04-12 09:15:34 +00:00
('tilde.institute', 'https://mspe.tilde.institute'),
2021-01-06 20:33:51 +00:00
('tilde.club', 'https://tilde.club/~mspe'),
2020-04-12 09:15:34 +00:00
('remotes.club', 'https://mspe.remotes.club'),
('thunix.net', 'https://thunix.net/~mspe'),
2020-06-12 10:45:32 +00:00
('yourtilde.com', 'https://yourtilde.com/~mspe'),
2021-11-08 20:37:41 +00:00
# ('tilde.ninja', 'https://tilde.ninja/~mspe'),
2021-01-06 20:33:51 +00:00
('aussies.space', 'https://aussies.space/~mspe'),
('ctrl-c.club', 'http://ctrl-c.club/~mspe'),
('fr.tild3.org', 'https://mspe.fr.tild3.org'),
('tilde.town', 'https://tilde.town/~mspe'),
2020-09-08 18:25:36 +00:00
('tilde.fun', 'https://tilde.fun/~mspe'),
2021-02-05 10:05:09 +00:00
('tilde.pink', 'https://tilde.pink/~mspe'),
('heathens.club', 'https://heathens.club/~mspe'),
2020-07-31 19:31:49 +00:00
('dimension.sh', 'https://dimension.sh/~mspe'),
2021-11-08 20:45:12 +00:00
# ('southlondon.cc', 'https://southlondon.cc/~mspe'),
2020-04-12 03:39:48 +00:00
('squiggle.city', 'https://squiggle.city/~mspe'),
2020-04-13 05:52:18 +00:00
('rw.rs', 'http://rw.rs/~mspe'),
# ('radiofreqs.space', 'https://mspe.radiofreqs.space'),
# ('hamish.space', 'https://hamish.space/~mspe'),
2021-11-08 20:37:41 +00:00
('tilde.guru', 'https://tilde.guru/~mspe'),
2020-04-11 23:58:16 +00:00
)
2020-04-12 01:44:19 +00:00
SITES = (
('rwx.work', 'https://rwx.work'),
('marc-beninca.fr', 'https://marc-beninca.fr'),
2020-04-12 09:15:34 +00:00
('tilde.link', 'https://tilde.link'),
2020-04-12 01:44:19 +00:00
)
2020-04-12 09:40:01 +00:00
GIT = (
2020-07-30 10:50:02 +00:00
('bitbucket.org', 'https://bitbucket.org/m-s-p-e'),
('codeberg.org', 'https://codeberg.org/mspe?tab=activity'),
('framagit.org', 'https://framagit.org/mspe'),
2021-03-22 13:22:55 +00:00
('frogg.it', 'https://lab.frogg.it/mspe'),
('gitea.com', 'https://gitea.com/mspe?tab=activity'),
2020-07-31 19:32:40 +00:00
('gitgud.io', 'https://gitgud.io/mspe'),
2020-07-30 14:06:39 +00:00
('github.com', 'https://github.com/m-s-p-e'),
2020-07-30 10:50:02 +00:00
('gitlab.com', 'https://gitlab.com/mspe'),
2021-03-22 13:22:36 +00:00
('insomnia247.nl', 'https://git.insomnia247.nl/mspe'),
2020-07-30 10:50:02 +00:00
('notabug.org', 'https://notabug.org/mspe?tab=activity'),
2020-08-01 17:10:49 +00:00
('pagure.io', 'https://pagure.io/user/mspe'),
2020-05-16 02:15:13 +00:00
('sr.ht', 'https://sr.ht/~mspe'),
2020-07-30 10:50:02 +00:00
('tildegit.org', 'https://tildegit.org/mspe?tab=activity'),
2020-07-30 12:27:35 +00:00
('salsa.debian.org', 'https://salsa.debian.org/marc-beninca'),
2020-04-12 09:40:01 +00:00
)
2020-04-11 06:28:12 +00:00
SOCIAL = (
2020-08-01 17:14:48 +00:00
('keybase.io', 'https://keybase.io/mspe'),
2020-04-12 10:04:51 +00:00
('linkedin.com', 'https://www.linkedin.com/in/marc-beninca'),
2020-04-12 09:51:03 +00:00
('lbry.tv', 'https://lbry.tv/@marc-beninca:d'),
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