Wed, 12 Jul 2023 21:43:22 +0200
numworks: minor fixes
0 | 1 | #!/usr/bin/env python |
2 | # -*- coding: utf-8 -*- # | |
3 | from __future__ import unicode_literals | |
4 | ||
5 | # This file is only used if you use `make publish` or | |
6 | # explicitly specify it as your config file. | |
7 | ||
8 | import os | |
9 | import sys | |
10 | sys.path.append(os.curdir) | |
11 | from pelicanconf import * | |
12 | ||
13 | SITEURL = 'https://whatever.sdfa3.org' | |
14 | RELATIVE_URLS = False | |
15 | ||
16 | FEED_ALL_ATOM = 'feeds/all.atom.xml' | |
144
202ad178f68f
Fix matomo and CATEGORY_FEED_ATOM config option
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
17 | CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' |
0 | 18 | |
19 | DELETE_OUTPUT_DIRECTORY = True | |
20 |