comparison piecrust/__init__.py @ 273:d70a4adb61dd

themes: Add the `chef themes` command The `themes` command lets the user create or override a theme easily.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 01 Mar 2015 09:07:36 -0800
parents 69d5eecfa449
children 869a206facd5
comparison
equal deleted inserted replaced
272:a561fbad0b7f 273:d70a4adb61dd
5 PLUGINS_DIR = 'plugins' 5 PLUGINS_DIR = 'plugins'
6 THEME_DIR = 'theme' 6 THEME_DIR = 'theme'
7 7
8 CONFIG_PATH = 'config.yml' 8 CONFIG_PATH = 'config.yml'
9 THEME_CONFIG_PATH = 'theme_config.yml' 9 THEME_CONFIG_PATH = 'theme_config.yml'
10 THEME_INFO_PATH = 'theme_info.yml'
10 11
11 DEFAULT_FORMAT = 'markdown' 12 DEFAULT_FORMAT = 'markdown'
12 DEFAULT_TEMPLATE_ENGINE = 'jinja2' 13 DEFAULT_TEMPLATE_ENGINE = 'jinja2'
13 DEFAULT_POSTS_FS = 'flat' 14 DEFAULT_POSTS_FS = 'flat'
14 DEFAULT_DATE_FORMAT = '%b %d, %Y' 15 DEFAULT_DATE_FORMAT = '%b %d, %Y'