1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-08 08:26:20 +00:00
LearningMVC/SportsStore.WebUI/Views/Nav/MenuHorizontal.cshtml
2017-04-08 03:51:50 +09:00

14 lines
440 B
Plaintext

@model IEnumerable<string>
<div class="btn-group btn-group-sm btn-group-justified">
@Html.ActionLink("Home", "List", "Product", null, new { @class = "btn btn-default btn-sm"})
@foreach (var link in Model)
{
@Html.RouteLink(link,
new { controller = "Product", action = "List", category = link, page = 1 },
new { @class = "btn btn-default btn-xs" + (link == ViewBag.SelectedCategory ? " btn-primary" : "")}
)
}
</div>