Last active
June 13, 2018 07:45
-
-
Save SeloSlav/93e1d0e1de207ae56d0a77ebed9e36dd to your computer and use it in GitHub Desktop.
Revisions
-
SeloSlav revised this gist
Jun 13, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ @foreach (var batch in Model.List.Batch(4)) { <div class="row"> // Bootstrap.css row @foreach (var item in batch) { <div class="col-lg-3">item.ObjectId</div> // Bootstrap.css column, i.e. col-lg-3 is 4 columns at screen resolution 'large' } </div> } -
SeloSlav created this gist
Jun 13, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ @foreach (var batch in Model.List.Batch(4)) { <div class="row"> @foreach (var item in batch) { <div class="col -lg-3">item.ObjectId</div> } </div> }