diff options
-rw-r--r-- | pelicanconf.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 1fba668..0be8a3b 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -50,7 +50,16 @@ SOCIAL = ( ('Github', 'https://github.com/dvzrv'), ('Twitter', 'https://twitter.com/dvzrv'), ) -STATIC_PATHS = [ 'icons', 'images', 'cert' ] +STATIC_PATHS = [ + 'icons', + 'images', + 'cert', + 'static/robots.txt', +] +EXTRA_PATH_METADATA = { + 'static/robots.txt': {'path': 'robots.txt'}, +} + THEME = 'sleepmap-theme' TIMEZONE = 'Europe/Berlin' TRANSLATION_FEED_ATOM = None |