Index: webgen0.5-0.5.11+dfsg/data/webgen/webgui/controller/main.rb
===================================================================
--- webgen0.5-0.5.11+dfsg.orig/data/webgen/webgui/controller/main.rb	2010-03-24 00:26:42.000000000 +0100
+++ webgen0.5-0.5.11+dfsg/data/webgen/webgui/controller/main.rb	2010-03-24 00:27:19.000000000 +0100
@@ -88,7 +88,7 @@
   end
 
   def create_website
-    @cur_bundle = request['website_bundle'] || @cur_bundle || 'style-andreas07'
+    @cur_bundle = request['website_bundle'] || @cur_bundle || 'simple'
 
     if request['create_site']
       wm = Webgen::WebsiteManager.new(session['website_dir'])
Index: webgen0.5-0.5.11+dfsg/doc/manual.page
===================================================================
--- webgen0.5-0.5.11+dfsg.orig/doc/manual.page	2010-03-24 00:26:52.000000000 +0100
+++ webgen0.5-0.5.11+dfsg/doc/manual.page	2010-03-24 00:27:25.000000000 +0100
@@ -55,7 +55,7 @@
     name or a bundle URL.
 
     > If you don't specify the `-b` option, the default value is used which applies the `default`
-    > and the `style-andreas07` bundles. The former only creates a simple `src/index.page` sothat
+    > and the `simple` bundles. The former only creates a simple `src/index.page` sothat
     > some output can be seen and the latter applies a nice layout.
     {:.information}
 
Index: webgen0.5-0.5.11+dfsg/lib/webgen/cli/create_command.rb
===================================================================
--- webgen0.5-0.5.11+dfsg.orig/lib/webgen/cli/create_command.rb	2010-03-24 00:26:56.000000000 +0100
+++ webgen0.5-0.5.11+dfsg/lib/webgen/cli/create_command.rb	2010-03-24 00:27:29.000000000 +0100
@@ -16,7 +16,7 @@
       self.short_desc = 'Create a basic webgen website from website bundles'
       self.options = CmdParse::OptionParserWrapper.new do |opts|
         opts.separator "Options:"
-        opts.on('-b', '--bundle BUNDLE', String, "A website bundle name/URL or 'none'. Can be used more than once (default: [default, style-andreas07])") do |val|
+        opts.on('-b', '--bundle BUNDLE', String, "A website bundle name/URL or 'none'. Can be used more than once (default: [default, simple])") do |val|
           if val.downcase == 'none'
             @bundles = nil
           elsif !@bundles.nil?
@@ -52,7 +52,7 @@
         paths = wm.create_website
         begin
           if @bundles
-            @bundles = ['default', 'style-andreas07'] if @bundles.empty?
+            @bundles = ['default', 'simple'] if @bundles.empty?
             @bundles.each {|name| paths += wm.apply_bundle(Utils.match_bundle_name(wm, name)) }
           end
         rescue
