public static IHtmlString RenderMobileNavigation(this HtmlHelper htmlHelper, Navigation navigation, string dataTheme, string dataContentTheme)
 {
     return htmlHelper.Raw(AddMobileNavigation(htmlHelper, navigation.NavigationNodes, dataTheme, dataContentTheme));
 }
 public static IHtmlString RenderNavigation(this HtmlHelper htmlHelper, Navigation navigation)
 {
     return htmlHelper.Raw(AddNavigation(htmlHelper, navigation.NavigationNodes));
 }