diff options
author | Vasudev Kamath <vasudev@copyninja.info> | 2016-04-17 17:30:28 +0530 |
---|---|---|
committer | Vasudev Kamath <vasudev@copyninja.info> | 2016-04-17 17:30:28 +0530 |
commit | 259097bf395400b7086c7fd8acaa4d87f61f9adb (patch) | |
tree | d544ca704b468c5c7b81b8a7f05d4d3832a08a14 /pelicanconf.py | |
parent | 18060a48b571a4904bca084c11d76fb8213a67b1 (diff) |
Some updates to work with new theme
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 80cad81..2a1df29 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -14,7 +14,7 @@ DEFAULT_LANG = u'en' # Theme THEME = os.path.join(os.environ.get('HOME'), - 'Public/pelican-themes/elegant') + 'Public/pelican-simple/') # Feed generation is usually not desired when developing @@ -24,7 +24,7 @@ TRANSLATION_FEED_ATOM = None # Display pages in Menu DISPLAY_PAGES_ON_MENU = True -DEFAULT_PAGINATION = 5 +DEFAULT_PAGINATION = 20 TAG_CLOUD_MAX_ITEMS = 10 DISPLAY_CATEGORIES_ON_MENU = False DISPLAY_TAGS_ON_SIDEBAR = True @@ -64,3 +64,8 @@ PAGE_URL = '{slug}' PAGE_SAVE_AS = '{slug}.html' TAG_URL = 'tags/{slug}.html' TAG_SAVE_AS = 'tags/{slug}.html' + +# Save index +#INDEX_SAVE_AS = 'archive.html' + +PYGMENTS_RST_OPTIONS = {'linenos': 'none',} |