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

16 lines
356 B
Plaintext

@model IEnumerable<string>
<div data-role="navbar">
<ul>
@foreach (var link in Model)
{
<li>
@Html.RouteLink(link,
new { controller = "Product", action = "List", category = link, page = 1 },
new { data_transition = "fade", @class = (link == ViewBag.SelectedCategory ? " ui-btn-active" : null) }
)
</li>
}
</ul>
</div>