Mercurial > piecrust2
comparison piecrust/__init__.py @ 36:485682a6de50
New site layout support.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 20 Aug 2014 23:16:51 -0700 |
parents | f485ba500df3 |
children | cb1ed436642c |
comparison
equal
deleted
inserted
replaced
35:e4c345dcf33c | 36:485682a6de50 |
---|---|
1 | 1 |
2 APP_VERSION = '2.0.0alpha' | 2 APP_VERSION = '2.0.0alpha' |
3 | 3 |
4 CACHE_DIR = '_cache' | 4 CACHE_DIR = '_cache' |
5 CONTENT_DIR = '_content' | 5 ASSETS_DIR = 'assets' |
6 TEMPLATES_DIR = '_content/templates' | 6 TEMPLATES_DIR = 'templates' |
7 PLUGINS_DIR = '_content/plugins' | 7 PLUGINS_DIR = 'plugins' |
8 THEME_DIR = '_content/theme' | 8 THEME_DIR = 'theme' |
9 | 9 |
10 CONFIG_PATH = '_content/config.yml' | 10 CONFIG_PATH = 'config.yml' |
11 THEME_CONFIG_PATH = '_content/theme_config.yml' | 11 THEME_CONFIG_PATH = 'theme_config.yml' |
12 | 12 |
13 DEFAULT_FORMAT = 'markdown' | 13 DEFAULT_FORMAT = 'markdown' |
14 DEFAULT_TEMPLATE_ENGINE = 'jinja2' | 14 DEFAULT_TEMPLATE_ENGINE = 'jinja2' |
15 DEFAULT_POSTS_FS = 'flat' | 15 DEFAULT_POSTS_FS = 'flat' |
16 DEFAULT_DATE_FORMAT = '%b %d, %Y' | 16 DEFAULT_DATE_FORMAT = '%b %d, %Y' |