diff 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
line wrap: on
line diff
--- a/piecrust/__init__.py	Wed Aug 20 21:46:27 2014 -0700
+++ b/piecrust/__init__.py	Wed Aug 20 23:16:51 2014 -0700
@@ -2,13 +2,13 @@
 APP_VERSION = '2.0.0alpha'
 
 CACHE_DIR = '_cache'
-CONTENT_DIR = '_content'
-TEMPLATES_DIR = '_content/templates'
-PLUGINS_DIR = '_content/plugins'
-THEME_DIR = '_content/theme'
+ASSETS_DIR = 'assets'
+TEMPLATES_DIR = 'templates'
+PLUGINS_DIR = 'plugins'
+THEME_DIR = 'theme'
 
-CONFIG_PATH = '_content/config.yml'
-THEME_CONFIG_PATH = '_content/theme_config.yml'
+CONFIG_PATH = 'config.yml'
+THEME_CONFIG_PATH = 'theme_config.yml'
 
 DEFAULT_FORMAT = 'markdown'
 DEFAULT_TEMPLATE_ENGINE = 'jinja2'