Created
February 5, 2012 04:09
-
-
Save brlinton/1742607 to your computer and use it in GitHub Desktop.
A version of the basic MVC3 project layout using Bootstrap from Twitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>@ViewBag.Title</title> | |
| <link href="@Url.Content("~/Content/css/bootstrap.css")" rel="stylesheet" type="text/css" /> | |
| <link href="@Url.Content("~/Content/css/bootstrap-responsive.css")" rel="stylesheet" type="text/css" /> | |
| <script src="@Url.Content("~/Scripts/jquery-1.7.1.min.js")" type="text/javascript"></script> | |
| <script src="@Url.Content("~/Scripts/bootstrap.js")" type="text/javascript"></script> | |
| <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div class="navbar"> | |
| <div class="navbar-inner"> | |
| <div class="container"> | |
| <a class="brand" href="#">Twitter Bootstrap Demo</a> | |
| <div class="nav-collapse"> | |
| <ul class="nav"> | |
| <li>@Html.ActionLink("Home", "Index", "Home")</li> | |
| <li>@Html.ActionLink("About", "About", "Home")</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="container"> | |
| @RenderBody() | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment