Reuse Default Sections
1. In modules/app/customization.js, modify homePageSectionsConfigProvider to set new or existing sections as follows:
/**
* This function is called near the very end of main.js, after PTC Arbortext Content Delivery has
* initialized itself, and just before angular.bootstrap() is called.
*
* Use this function for config customizations.
*/
after:function () {
module.config(function (homePageSectionsConfigProvider) {
//custom section created in step 1
var customSection = {
templte: :app/views/homePageSections/customSection.html"
};
//Get default sections
var defaultSections= homePageSectionsConfigProvider.defaultSections

//include custom sections and defaults sections needed in
//the preferred order
homePageSectionsConfigProvider.setSections([customSection,
defaultSections.whatsNew]);
}};
}


}
2. Rebuild the client artifacts by running the following command: <ANT_HOME>/bin/ant -f <WT_HOME>/codebase.war/delivery/minimize.xml