Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="aspnet4MichalKliment.SiteMaster" %>
- <!DOCTYPE html>
- <html lang="en">
- <head runat="server">
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title><%: Page.Title %> - My ASP.NET Application</title>
- <asp:PlaceHolder runat="server">
- <%: Scripts.Render("~/bundles/modernizr") %>
- </asp:PlaceHolder>
- <link href="/Content/Main.css" rel="stylesheet" media="all" />
- <link href="/js/dcalendar.picker.css" rel="stylesheet" media="all" />
- <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
- </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=301884 --%>
- <%--Framework Scripts--%>
- <asp:ScriptReference Name="MsAjaxBundle" />
- <asp:ScriptReference Name="jquery" />
- <asp:ScriptReference Name="bootstrap" />
- <asp:ScriptReference Name="respond" />
- <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>
- <nav>
- <ul>
- <li>
- <a href="/">Application Name</a>
- </li>
- </ul>
- </nav>
- <section><div>
- <asp:ContentPlaceHolder ID="MainContent" runat="server">
- </asp:ContentPlaceHolder>
- </div></section>
- <footer>
- <p>© <%: DateTime.Now.Year %> - Michal Kliment </p>
- </footer>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement