casing issues + missing semicolon in view
This commit is contained in:
@@ -16,8 +16,9 @@
|
||||
{
|
||||
foreach (var section in Model.sections) {
|
||||
<div class="grid-section">
|
||||
@foreach (var row in section.rows) {
|
||||
renderRow(row)
|
||||
@foreach (var row in section.rows)
|
||||
{
|
||||
renderRow(row);
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@@ -26,8 +27,9 @@
|
||||
@foreach (var s in Model.sections) {
|
||||
<div class="grid-section">
|
||||
<div class="col-md-@s.grid column">
|
||||
@foreach (var row in s.rows) {
|
||||
renderRow(row)
|
||||
@foreach (var row in s.rows)
|
||||
{
|
||||
renderRow(row);
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -12,8 +12,9 @@
|
||||
{
|
||||
foreach (var section in Model.sections) {
|
||||
<div class="grid-section">
|
||||
@foreach (var row in section.rows) {
|
||||
renderRow(row, true)
|
||||
@foreach (var row in section.rows)
|
||||
{
|
||||
renderRow(row, true);
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@@ -23,8 +24,9 @@
|
||||
@foreach (var s in Model.sections) {
|
||||
<div class="grid-section">
|
||||
<div class="col-md-@s.grid column">
|
||||
@foreach (var row in s.rows) {
|
||||
renderRow(row, false)
|
||||
@foreach (var row in s.rows)
|
||||
{
|
||||
renderRow(row, false);
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user