Exercise Files

This commit is contained in:
Jess Chadwick
2018-06-06 23:57:58 -04:00
commit 20458e435e
4436 changed files with 1359080 additions and 0 deletions

View File

@ -0,0 +1,6 @@
@{
ViewBag.Title = "About";
}
<h3>@ViewBag.Message</h3>
<p>Use this area to provide additional information.</p>

View File

@ -0,0 +1,16 @@
@{
ViewBag.Title = "Contact";
}
<h3>@ViewBag.Message</h3>
<address>
One Microsoft Way<br />
Redmond, WA 98052-6399<br />
<abbr title="Phone">P:</abbr>
425.555.0100
</address>
<address>
<strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
<strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@example.com</a>
</address>

View File

@ -0,0 +1,19 @@
@model IDictionary<HPlusSports.Models.Category, int>
@{
ViewBag.Title = "Categories";
}
<div class="row">
@foreach (var category in Model.Keys)
{
<div class="category col-md-4 text-center">
<a href="@Url.Action("Category", "Products", new { id = category.Key })">
<img class="img-thumbnail" src="@Url.Action("Category", "Images", new { id = category.Key })" />
<h3>@category.Name</h3>
</a>
</div>
}
</div>