Adding a new Custom Section to the Home Page
1. Add a custom html template for the new section. Add customSection at <WT_HOME>/codebase.war/delivery/app/views/homePageSections/customSection.html.
For example:
<!--This is a placeholder-->
<span>Custom Section</span>
2. In the after method of modules/app/customization.js, access the homePageSectionsConfigProvider to set the new section 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"
};

homePageSectionsConfigProvider.setSections)[customSection]);
}};

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