Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="BuildSystemBootStrap.SiteMaster" %>
- <!DOCTYPE html>
- <html lang="en">
- <head runat="server">
- <meta charset="utf-8" />
- <title><%: Page.Title %> - My ASP.NET Application</title>
- <asp:PlaceHolder runat="server">
- <%: Scripts.Render("~/bundles/modernizr") %>
- </asp:PlaceHolder>
- <webopt:BundleReference runat="server" Path="~/Content/css" />
- <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
- <link href="~/Content/bootstrap.css" rel="stylesheet"/>
- <%--<meta name="viewport" content="width=device-width" />--%>
- <asp:ContentPlaceHolder runat="server" ID="HeadContent" />
- </head>
- <body>
- <form runat="server">
- <asp:ScriptManager runat="server">
- <Scripts>
- <%--To learn more about bundling scripts in ScriptManager see http://go.microsoft.com/fwlink/?LinkID=272931&clcid=0x409 --%>
- <%--Framework Scripts--%>
- <asp:ScriptReference Name="MsAjaxBundle" />
- <asp:ScriptReference Name="jquery" />
- <asp:ScriptReference Name="jquery.ui.combined" />
- <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
- <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
- <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
- <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
- <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
- <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
- <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
- <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
- <asp:ScriptReference Name="WebFormsBundle" />
- <%--Site Scripts--%>
- </Scripts>
- </asp:ScriptManager>
- <header>
- <div class="content-wrapper">
- <div>
- <nav class="navbar navbar-default" role="navigation">
- <!-- Brand and toggle get grouped for better mobile display -->
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="#">My website</a>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse navbar-ex1-collapse">
- <ul class="nav navbar-nav navbar-right">
- <li><a id="A1" runat="server" href="~/">Home</a></li>
- <li><a id="A2" runat="server" href="~/About">About</a></li>
- <li><a id="A3" runat="server" href="~/Contact">Contact</a></li>
- <li class="dropdown">
- <a href="#" class="dropdown-toggle" data-toggle="dropdown">Accounts<b class="caret"></b></a>
- <ul class="dropdown-menu">
- <li><a href="#">Action</a></li>
- </ul>
- </li>
- </ul>
- </div><!-- /.navbar-collapse -->
- </nav>
- </div>
- </div>
- </header>
- <div id="body">
- <asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />
- <section class="content-wrapper main-content clear-fix">
- <asp:ContentPlaceHolder runat="server" ID="MainContent" />
- </section>
- </div>
- <footer>
- <div class="content-wrapper">
- <div class="well-sm">
- <p>© <%: DateTime.Now.Year %> - My ASP.NET Application</p>
- </div>
- </div>
- </footer>
- </form>
- <script src="~/scripts/jquery-1.9.1.js" type="text/javascript"></script>
- <script src="~/scripts/bootstrap.js" type="text/javascript"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement