Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div class="row mt-5 mb-5" style="overflow-y: auto;">
- @foreach (var s in Model)
- {
- <div class="col-lg-4 col-md-4 mb-4">
- <div class="card h-100">
- <img class="card-img-top" src="@s.ImageUrl" alt="@s.Title">
- <div class="card-body">
- <h4 class="card-title justify-content-between">
- <small>Title: @s.Title</small>
- <small>Genre: @s.Type.Type</small>
- </h4>
- <h5>Author: @s.Author.NickName</h5>
- <hr/>
- <p class="card-text">@s.Summary</p>
- </div>
- <div class="card-footer">
- <a small class="text-muted card-link" asp-controller="Stories" asp-action="Details" asp-route-id="@s.Id" as>Go to Story</a>
- </div>
- </div>
- </div>
- }
- </div>
Advertisement
Add Comment
Please, Sign In to add comment