public IHtmlHelper CreateGlyph(GlyphType type, string id = "", string @class = "")
        {
            var g = new BootstrapGlyph(type);

            g.Id = id;
            g.Classes.Add(@class);

            return(RenderToPage(g));
        }
        public MvcHtmlString Glyph(GlyphType type, string id = "", string @class = "")
        {
            var g = new BootstrapGlyph(type);

            g.Id = id;
            g.Classes.Add(@class);

            return(Render(g));
        }
 public IHtmlHelper CreateGlyph(BootstrapGlyph glyph)
 {
     return(RenderToPage(glyph));
 }
 public MvcHtmlString Glyph(BootstrapGlyph glyph)
 {
     return(Render(glyph));
 }