public static HtmlString Nav(this HtmlHelper html, NavOptions options) => html.Nav(ViewUtils.NavItems, options);
public static HtmlString Nav(this HtmlHelper html, List <NavItem> navItems) => html.Nav(navItems, null);
public static HtmlString Nav(this HtmlHelper html) => html.Nav(ViewUtils.NavItems, null);