added THEME_STATIC_DIR setting

The theme static output directory path is now customisable via settings.
i.e. you can now use 'assets' instead of 'theme'.
This commit is contained in:
Russ Webber 2013-07-18 10:36:44 +08:00 committed by Russ Webber
commit 89034f8b3f
4 changed files with 7 additions and 2 deletions

View file

@ -35,6 +35,7 @@ DEFAULT_CONFIG = {
'OUTPUT_PATH': 'output',
'MARKUP': ('rst', 'md'),
'STATIC_PATHS': ['images', ],
'THEME_STATIC_DIR': 'theme',
'THEME_STATIC_PATHS': ['static', ],
'FEED_ALL_ATOM': os.path.join('feeds', 'all.atom.xml'),
'CATEGORY_FEED_ATOM': os.path.join('feeds', '%s.atom.xml'),