Mercurial > piecrust2
diff piecrust/__init__.py @ 711:ab5c6a8ae90a
bake: Replace hard-coded taxonomy support with "generator" system.
* Taxonomies are now implemented one or more `TaxonomyGenerator`s.
* A `BlogArchivesGenerator` stub is there but non-functional.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 26 May 2016 19:52:47 -0700 |
parents | d3a5a086e5cd |
children | f1dd8f2e79e7 |
line wrap: on
line diff
--- a/piecrust/__init__.py Thu May 26 19:46:28 2016 -0700 +++ b/piecrust/__init__.py Thu May 26 19:52:47 2016 -0700 @@ -3,6 +3,7 @@ ASSETS_DIR = 'assets' TEMPLATES_DIR = 'templates' THEME_DIR = 'theme' +THEMES_DIR = 'themes' CONFIG_PATH = 'config.yml' THEME_CONFIG_PATH = 'theme_config.yml' @@ -17,7 +18,7 @@ PIECRUST_URL = 'https://bolt80.com/piecrust/' -CACHE_VERSION = 23 +CACHE_VERSION = 24 try: from piecrust.__version__ import APP_VERSION