mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
25 lines
697 B
Plaintext
25 lines
697 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="~/Content/bootstrap.css" rel="stylesheet" />
|
|
<link href="~/Content/bootstrap-theme.css" rel="stylesheet" />
|
|
<link href="~/Content/ErrorStyles.css" rel="stylesheet" />
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
<div class="navbar navbar-inverse" role="navigation">
|
|
<a class="navbar-brand" href="#">SPORTS STORE</a>
|
|
@Html.Action("Summary", "Cart")
|
|
</div>
|
|
<div class="row panel">
|
|
<div id="categories" class="col-xs-3">
|
|
@Html.Action("Menu", "Nav")
|
|
</div>
|
|
<div class="col-xs-8">
|
|
@RenderBody()
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |