diff --git a/theme/fusion/config.php b/theme/fusion/config.php
new file mode 100644
index 00000000000..494a50f95f1
--- /dev/null
+++ b/theme/fusion/config.php
@@ -0,0 +1,255 @@
+.
+
+/**
+ * Configuration for Moodle's fusion theme.
+ *
+ * DO NOT MODIFY THIS THEME!
+ * COPY IT FIRST, THEN RENAME THE COPY AND MODIFY IT INSTEAD.
+ *
+ * For full information about creating Moodle themes, see:
+ * http://docs.moodle.org/en/Development:Themes_2.0
+ *
+ * @package moodlecore
+ * @copyright 2010 Patrick Malley (http://newschoollearning.com/)
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$THEME->name = 'fusion';
+
+////////////////////////////////////////////////////
+// Name of the theme. Most likely the name of
+// the directory in which this file resides.
+////////////////////////////////////////////////////
+
+
+$THEME->parents = array(
+ 'canvas',
+ 'base',
+);
+
+/////////////////////////////////////////////////////
+// Which existing theme(s) in the /theme/ directory
+// do you want this theme to extend. A theme can
+// extend any number of themes. Rather than
+// creating an entirely new theme and copying all
+// of the CSS, you can simply create a new theme,
+// extend the theme you like and just add the
+// changes you want to your theme.
+////////////////////////////////////////////////////
+
+
+$THEME->sheets = array(
+ 'core',
+ 'pagelayout',
+ 'menus',
+);
+
+////////////////////////////////////////////////////
+// Name of the stylesheet(s) you've including in
+// this theme's /styles/ directory.
+////////////////////////////////////////////////////
+
+$THEME->parents_exclude_sheets = array(
+ 'base'=>array(
+ 'pagelayout',
+ ),
+ 'canvas'=>array(
+ 'pagelayout',
+ ),
+);
+
+
+$THEME->enable_dock = true;
+
+////////////////////////////////////////////////////
+// Do you want to use the new navigation dock?
+////////////////////////////////////////////////////
+
+
+// $THEME->editor_sheets
+
+////////////////////////////////////////////////////
+// An array of stylesheets to include within the
+// body of the editor.
+////////////////////////////////////////////////////
+
+$THEME->layouts = array(
+ 'base' => array(
+ 'file' => 'general.php',
+ 'regions' => array(),
+ ),
+ 'general' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'course' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post'
+ ),
+ 'coursecategory' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'incourse' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'frontpage' => array(
+ 'file' => 'frontpage.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'admin' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'mydashboard' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ 'options' => array('langmenu'=>true),
+ ),
+ 'mypublic' => array(
+ 'file' => 'general.php',
+ 'regions' => array('side-post'),
+ 'defaultregion' => 'side-post',
+ ),
+ 'login' => array(
+ 'file' => 'general.php',
+ 'regions' => array(),
+ 'options' => array('langmenu'=>true),
+ ),
+ 'popup' => array(
+ 'file' => 'general.php',
+ 'regions' => array(),
+ 'options' => array('nofooter'=>true, 'noblocks'=>true, 'nonavbar'=>true),
+ ),
+ 'frametop' => array(
+ 'file' => 'general.php',
+ 'regions' => array(),
+ 'options' => array('nofooter'=>true),
+ ),
+ 'maintenance' => array(
+ 'file' => 'general.php',
+ 'regions' => array(),
+ 'options' => array('nofooter'=>true, 'nonavbar'=>true),
+ ),
+ 'embedded' => array(
+ 'theme' => 'canvas',
+ 'file' => 'embedded.php',
+ 'regions' => array(),
+ 'options' => array('nofooter'=>true, 'nonavbar'=>true),
+ ),
+
+);
+
+///////////////////////////////////////////////////////////////
+// These are all of the possible layouts in Moodle. The
+// simplest way to do this is to keep the theme and file
+// variables the same for every layout. Including them
+// all in this way allows some flexibility down the road
+// if you want to add a different layout template to a
+// specific page.
+///////////////////////////////////////////////////////////////
+
+// $THEME->csspostprocess = 'fusion_process_css';
+
+////////////////////////////////////////////////////
+// Allows the user to provide the name of a function
+// that all CSS should be passed to before being
+// delivered.
+////////////////////////////////////////////////////
+
+// $THEME->filter_mediaplugin_colors
+
+////////////////////////////////////////////////////
+// Used to control the colours used in the small
+// media player for the filters
+////////////////////////////////////////////////////
+
+// $THEME->javascripts
+
+////////////////////////////////////////////////////
+// An array containing the names of JavaScript files
+// located in /javascript/ to include in the theme.
+// (gets included in the head)
+////////////////////////////////////////////////////
+
+// $THEME->javascripts_footer
+
+////////////////////////////////////////////////////
+// As above but will be included in the page footer.
+////////////////////////////////////////////////////
+
+$THEME->larrow = '〈';
+
+////////////////////////////////////////////////////
+// Overrides the left arrow image used throughout
+// Moodle
+////////////////////////////////////////////////////
+
+$THEME->rarrow = '〉';
+
+////////////////////////////////////////////////////
+// Overrides the right arrow image used throughout Moodle
+////////////////////////////////////////////////////
+
+// $THEME->layouts
+
+////////////////////////////////////////////////////
+// An array setting the layouts for the theme
+////////////////////////////////////////////////////
+
+// $THEME->parents_exclude_javascripts
+
+////////////////////////////////////////////////////
+// An array of JavaScript files NOT to inherit from
+// the themes parents
+////////////////////////////////////////////////////
+
+// $THEME->parents_exclude_sheets
+
+////////////////////////////////////////////////////
+// An array of stylesheets not to inherit from the
+// themes parents
+////////////////////////////////////////////////////
+
+// $THEME->plugins_exclude_sheets
+
+////////////////////////////////////////////////////
+// An array of plugin sheets to ignore and not
+// include.
+////////////////////////////////////////////////////
+
+// $THEME->renderfactory
+
+////////////////////////////////////////////////////
+// Sets a custom render factory to use with the
+// theme, used when working with custom renderers.
+////////////////////////////////////////////////////
+
+// $THEME->resource_mp3player_colors
+
+////////////////////////////////////////////////////
+// Controls the colours for the MP3 player
+////////////////////////////////////////////////////
diff --git a/theme/fusion/lang/en/theme_fusion.php b/theme/fusion/lang/en/theme_fusion.php
new file mode 100644
index 00000000000..6ec407d928e
--- /dev/null
+++ b/theme/fusion/lang/en/theme_fusion.php
@@ -0,0 +1,41 @@
+.
+
+/**
+ * Strings for component 'theme_fusion', language 'en', branch 'MOODLE_20_STABLE'
+ *
+ * @package moodlecore
+ * @copyright 2010 Patrick Malley
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['pluginname'] = 'Fusion';
+$string['region-side-post'] = 'Right';
+$string['region-side-pre'] = 'Left';
+$string['choosereadme'] = '
Fusion is a simple two-column, fluid-width theme for Moodle 2.0.
Tweaks
This theme is built upon both Base and Canvas, two parent themes included in the Moodle core. If you want to modify this theme, we recommend that you first duplicate it, then rename it before making your changes. This will prevent your customized theme from being overwritten by future Moodle upgrades, and you\'ll still have the original files if you make a mess. More information on modifying themes can be found in the MoodleDocs.
License
This, and all other themes included in the Moodle core, are licensed under the GNU General Public License.
';
+
+$string['linkcolor'] = 'Link Color';
+$string['linkcolordesc'] = 'This sets the link color for the theme.';
+$string['configtitle'] = 'Arialist settings';
+$string['customcss'] = 'Custom CSS';
+$string['customcssdesc'] = 'Any CSS you enter here will be added to every page allowing your to easily customise this theme.';
+$string['tagline'] = 'Tagline';
+$string['taglinedesc'] = 'A short tagline to be displayed under the site name on the front page. (Will not be displayed with logo.)';
+$string['logo'] = 'Logo';
+$string['logodesc'] = 'Enter the URL to an image to use as the logo for this site. Should be http://www.yoursite.com/path/to/logo.png';
+$string['regionwidth'] = 'Column width';
+$string['regionwidthdesc'] = 'This sets the width of the two block regions that form the left and right columns.';
diff --git a/theme/fusion/layout/frontpage.php b/theme/fusion/layout/frontpage.php
new file mode 100644
index 00000000000..95fde8174ad
--- /dev/null
+++ b/theme/fusion/layout/frontpage.php
@@ -0,0 +1,136 @@
+heading);
+$hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
+$hasfooter = (empty($PAGE->layout_options['nofooter']));
+$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
+$showsidepost = ($hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT));
+
+$custommenu = $OUTPUT->custom_menu();
+$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
+
+$bodyclasses = array();
+if ($showsidepost) {
+ $bodyclasses[] = 'side-post-only';
+} else if (!$showsidepost) {
+ $bodyclasses[] = 'content-only';
+}
+if ($hascustommenu) {
+ $bodyclasses[] = 'has_custom_menu';
+}
+
+echo $OUTPUT->doctype() ?>
+htmlattributes() ?>>
+
+ title ?>
+
+
+
+ standard_head_html() ?>
+
+
+
+standard_top_of_body_html() ?>
+
+