コード例 #1
0
ファイル: MvcDiv.cs プロジェクト: EzyWebwerkstaden/n2cms
		public static MvcDiv BeginBootstrapXsDiv(this HtmlHelper html, int columns)
		{
			return html.BeginDiv(ResourcesExtensions.BootstrapColumnClass(columns, ResourcesExtensions.BootstrapScreenSize.xs));
		}
コード例 #2
0
 public static ContainerElement BeginPanelDefault(this HtmlHelper helper)
 {
     return helper.BeginDiv("panel panel-default");
 }
コード例 #3
0
ファイル: MvcDiv.cs プロジェクト: EzyWebwerkstaden/n2cms
		// Methods
		public static MvcDiv BeginDiv(this HtmlHelper html)
		{
			return html.BeginDiv(null);
		}
コード例 #4
0
 public static ContainerElement BeginPanelBody(this HtmlHelper helper)
 {
     return helper.BeginDiv("panel-body");
 }