78 lines
3.4 KiB
Plaintext
78 lines
3.4 KiB
Plaintext
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Bootstrap.master.cs" Inherits="ScheMe.Bootstrap" %>
|
|
|
|
<%@ Register Src="~/WebUserControls/mod_bottom.ascx" TagPrefix="uc1" TagName="mod_bottom" %>
|
|
<%@ Register Src="~/WebUserControls/mod_top.ascx" TagPrefix="uc1" TagName="mod_top" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head runat="server">
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%: Page.Title %> Steamware's ScheMe</title>
|
|
|
|
<asp:PlaceHolder runat="server">
|
|
<%: Scripts.Render("~/bundles/modernizr") %>
|
|
<%: Scripts.Render("~/bundles/jquery") %>
|
|
<%: Scripts.Render("~/bundles/jqueryui") %>
|
|
<%: Scripts.Render("~/bundles/bootSwitch") %>
|
|
</asp:PlaceHolder>
|
|
|
|
<webopt:BundleReference ID="BundleReference2" runat="server" Path="~/Content/bootstrap/css" />
|
|
<webopt:BundleReference ID="BundleReference1" runat="server" Path="~/Content/css" />
|
|
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<asp:ContentPlaceHolder ID="head" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</head>
|
|
<body>
|
|
<form id="form1" 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>
|
|
<div id="textWrapper">
|
|
<asp:UpdatePanel ID="upHead" runat="server">
|
|
<ContentTemplate>
|
|
<uc1:mod_top runat="server" ID="mod_top" />
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
<div class="container-fluid body-content">
|
|
<asp:UpdatePanel runat="server" ID="upnContent">
|
|
<ContentTemplate>
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
<asp:UpdatePanel ID="uppFooter" runat="server">
|
|
<ContentTemplate>
|
|
<uc1:mod_bottom runat="server" ID="mod_bottom" />
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<script src="Scripts/bootstrap.min.js"></script>
|
|
<asp:PlaceHolder ID="PlaceHolder2" runat="server">
|
|
<%: Scripts.Render("~/bundles/jSteamware") %>
|
|
</asp:PlaceHolder>
|
|
</body>
|
|
</html>
|