Last active
April 27, 2020 11:15
-
-
Save ashour/165783be13e59e3fede051e9e2fe5c3a to your computer and use it in GitHub Desktop.
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 characters
@model List<Heaventure.Data.Constellation> | |
@{ | |
ViewBag.Title = "Home Page"; | |
} | |
<div class="row mt-lg"> | |
@foreach (var constellation in Model) | |
{ | |
<div class="col-md-4"> | |
<div class="panel panel-default"> | |
<div class="panel-body panel-img-container"> | |
<a href="@Url.Action("Details", new { Id = constellation.Id })"> | |
<img | |
src="@Url.Content(constellation.ImageUrl)" | |
class="img-responsive" | |
/> | |
</a> | |
</div> | |
<div class="panel-footer"> | |
<h3 class="panel-title text-center"> | |
@Html.ActionLink( | |
constellation.Name, | |
"Details", | |
new { Id = constellation.Id }) | |
</h3> | |
</div> | |
</div> | |
</div> | |
} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment