Skip to content

Instantly share code, notes, and snippets.

@ashour
Last active April 27, 2020 11:15
Show Gist options
  • Save ashour/165783be13e59e3fede051e9e2fe5c3a to your computer and use it in GitHub Desktop.
Save ashour/165783be13e59e3fede051e9e2fe5c3a to your computer and use it in GitHub Desktop.
@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