Created
June 14, 2012 07:40
-
-
Save michaelroper/2928782 to your computer and use it in GitHub Desktop.
Sitefinity v5 page layout templates using the Twitter Bootstrap grid columns.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<div runat="server" class="row"> | |
<div runat="server" class="sf_colsOut"> | |
<div runat="server" class="sf_colsIn span3"></div> | |
<div runat="server" class="sf_colsIn span3"></div> | |
<div runat="server" class="sf_colsIn span3"></div> | |
<div runat="server" class="sf_colsIn span3"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<div runat="server" class="row"> | |
<div runat="server" class="sf_colsOut"> | |
<div runat="server" class="sf_colsIn span4"></div> | |
<div runat="server" class="sf_colsIn span4"></div> | |
<div runat="server" class="sf_colsIn span4"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<div runat="server" class="row"> | |
<div runat="server" class="sf_colsOut"> | |
<div runat="server" class="sf_colsIn span4"></div> | |
<div runat="server" class="sf_colsIn span8"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<div runat="server" class="row"> | |
<div runat="server" class="sf_colsOut"> | |
<div runat="server" class="sf_colsIn span6"></div> | |
<div runat="server" class="sf_colsIn span6"></div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<div runat="server" class="row"> | |
<div runat="server" class="sf_colsOut"> | |
<div runat="server" class="sf_colsIn span8"></div> | |
<div runat="server" class="sf_colsIn span4"></div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Michael, what exactly is the reason for still using the sf_colsOut/In classes? Are they used within the backend and cannot be omitted?
Edit: Ok, I had a play around and I see, the layout editor has a problem recognizing the editable fields without colsOut/In classes. Uncool.
Cheers
Patrik