7.6.2 Applying Bootstrap Styles to the Layout; Listing 7-26 Applying Bootstrap CSS to the _Layout.cshtml File
parent
b16bff04fc
commit
72d6a86d87
|
@ -3,11 +3,21 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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"/>
|
||||||
<title>@ViewBag.Title</title>
|
<title>@ViewBag.Title</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div class="navbar navbar-inverse" role="navigation">
|
||||||
|
<a class="navbar-brand" href="#">SPORTS STORE</a>
|
||||||
|
</div>
|
||||||
|
<div class="row panel">
|
||||||
|
<div id="categoreis" class="col-xs-3">
|
||||||
|
Put something useful here later
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-8">
|
||||||
@RenderBody()
|
@RenderBody()
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue