diff options
Diffstat (limited to 'pelicanconf.py')
-rwxr-xr-x | pelicanconf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 6edae01..cd38cc3 100755 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -19,7 +19,6 @@ DEFAULT_LANG = u'fr' #SOCIAL = (('You can add links in your config file', '#'), # ('Another social link', '#'),) -DEFAULT_PAGINATION = 4 FEED_DOMAIN = SITEURL FEED_RSS = 'feed' FEED_ATOM = 'feeds/atom.xml' @@ -27,6 +26,8 @@ FEED_MAX_ITEMS=5 TAG_FEED_RSS = 'feeds/%s.xml' TAG_FEED_ATOM = 'feeds/%s.atom' +DEFAULT_PAGINATION = FEED_MAX_ITEMS + ARTICLE_URL = u'{date:%Y}/{date:%m}/{slug}/' ARTICLE_SAVE_AS = u'{date:%Y}/{date:%m}/{slug}/index.html' |