public static string Group(this SiteMapNodeModel node, bool inherit = false)
 {
     return(node.GetAttribute("group", inherit));
 }
 public static bool Visible(this SiteMapNodeModel node, bool inherit = false)
 {
     return(node.GetAttribute("visible", inherit) != "false");
 }                                                                                                                                               // default = true
        //<li class="nav-title">Theme</li>

        public static string Icon(this SiteMapNodeModel node, bool inherit = true)
        {
            return(node.GetAttribute("icon", inherit));
        }