diff piecrust/plugins/builtin.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 f130365568ff
children 2daa05a21026
line wrap: on
line diff
--- a/piecrust/plugins/builtin.py	Sun Mar 01 09:07:02 2015 -0800
+++ b/piecrust/plugins/builtin.py	Sun Mar 01 09:07:36 2015 -0800
@@ -10,6 +10,7 @@
         UserDefinedPrepareTemplatesCommandExtension,
         DefaultPrepareTemplatesHelpTopic)
 from piecrust.commands.builtin.serving import (ServeCommand)
+from piecrust.commands.builtin.themes import (ThemesCommand)
 from piecrust.commands.builtin.util import (
         InitCommand, PurgeCommand, ImportCommand)
 from piecrust.data.provider import (IteratorDataProvider, BlogDataProvider)
@@ -56,6 +57,7 @@
                 ShowSourcesCommand(),
                 ShowRoutesCommand(),
                 ShowPathsCommand(),
+                ThemesCommand(),
                 BakeCommand(),
                 ShowRecordCommand(),
                 ServeCommand()]