diff options
Diffstat (limited to 'pelicanconf.py')
| -rw-r--r-- | pelicanconf.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 3d01167..bfadb5d 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals AUTHOR = 'gamerdonkey' SITENAME = 'gamerdonkey' -SITEURL = 'https://gamerdonkey.com' +SITEURL = '' PATH = 'content' @@ -12,6 +12,11 @@ TIMEZONE = 'America/Chicago' DEFAULT_LANG = 'en' +# URL Options + +ARTICLE_URL = 'posts/{date:%Y}/{slug}/' +ARTICLE_SAVE_AS = 'posts/{date:%Y}/{slug}/index.html' + # Feed generation is usually not desired when developing FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None |
