Advertisement
Slightom

Untitled

Jan 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <div class="homeRow">
  2.     <div class="row" style="margin-bottom: 15px">
  3.         @for (int i = 0; i < Model.Count(); i++)
  4.        {
  5.            if (i != 0 && i % 4 == 0)
  6.            {
  7.                @:</div>
  8.                 @:<div class="row" style="margin-bottom: 15px">
  9.             }
  10.  
  11.             <div class="col-md-3">
  12.                 <div class="thumbnail">
  13.                     <a href="@Model.ElementAt(i).Path" data-lightbox="gallery">
  14.                         <img src="@Model.ElementAt(i).Path" />
  15.                     </a>
  16.                 </div>
  17.             </div>
  18.         }
  19.     </div>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement