public class TestYamlPage extends YamlPage {
public static final String THE_TITLE = "theTitle";
public TestYamlPage() {
//Add my custom style sheets
add( new StyleSheetReference( "basemodStyleSheet", new ResourceReference( TestYamlPage.class, "css/basemod.css" ) ) );
add( new StyleSheetReference( "contentStyleSheet", new ResourceReference( TestYamlPage.class, "css/content.css" ) ) );
//Add the navigation
addOrReplace( new YamlNavigation( ID_NAVIGATION, new YamlNavigationLinksView( new ListDataProvider( getLinkProviders() ) ), new ResourceReference( TestYamlPage.class, "css/navigation.css" ) ) );
//Add the footer
addOrReplace( new YamlFooter( ID_FOOTER ) );