Aliendreamer

bootstrap hell

Dec 5th, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <div class="row mt-5 mb-5" style="overflow-y: auto;">
  2.  
  3. @foreach (var s in Model)
  4. {
  5. <div class="col-lg-4 col-md-4 mb-4">
  6. <div class="card h-100">
  7. <img class="card-img-top" src="@s.ImageUrl" alt="@s.Title">
  8. <div class="card-body">
  9. <h4 class="card-title justify-content-between">
  10. <small>Title: @s.Title</small>
  11. <small>Genre: @s.Type.Type</small>
  12. </h4>
  13. <h5>Author: @s.Author.NickName</h5>
  14. <hr/>
  15. <p class="card-text">@s.Summary</p>
  16. </div>
  17. <div class="card-footer">
  18. <a small class="text-muted card-link" asp-controller="Stories" asp-action="Details" asp-route-id="@s.Id" as>Go to Story</a>
  19. </div>
  20. </div>
  21. </div>
  22. }
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment