BootstrapExtensions.Components.Navbar.NavbarBuilder.Brand C# (CSharp) Method

Brand() public method

A simple link to show your brand or project name
public Brand ( string title, string link = null ) : void
title string
link string
return void
        public void Brand(string title, string link = null)
        {
            _navbar.InnerHtml += string.Format("<a class=\"brand\" href=\"{1}\">{0}</a>", title, link ?? "#");
        }