Keybase.txt, robots.txt avec pelican

Placer au préalable les fichiers Keybase.txt et robots.txt dans le répertoire contents.

Dans le fichier de configuration de pelican (par exemple publishconf.py) mettre le bloc suivant :

 STATIC_PATHS = ['img', 'static/robots.txt', 'img', 'static/keybase.txt' ]

EXTRA_PATH_METADATA = {
    'static/robots.txt': {'path': 'robots.txt'}, 
    'static/keybase.txt': {'path': 'keybase.txt'}, 
    'img': {'path': 'img'}, 
    'apropos': {'path': 'a-propos'} 
}