77 lines
3.5 KiB
Plaintext
77 lines
3.5 KiB
Plaintext
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Bootstrap.master.cs" Inherits="WebMasterPages.Bootstrap" %>
|
|
|
|
<%@ Register Src="~/WebUserControls/mod_footer.ascx" TagPrefix="uc1" TagName="mod_footer" %>
|
|
<%@ Register Src="~/WebUserControls/mod_menuTopCompact.ascx" TagPrefix="uc1" TagName="mod_menuTopCompact" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
|
<head runat="server">
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="description" content="MP Tablet" />
|
|
<meta name="author" content="Steamware" />
|
|
<link rel="shortcut icon" href="~/favicon.ico" />
|
|
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<title>XPST: <%: SteamWare.devicesAuthProxy.getPage(Request.Url) %></title>
|
|
|
|
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
|
|
<%--<%: Scripts.Render("~/bundles/modernizr") %>--%>
|
|
<%: Scripts.Render("~/bundles/jquery") %>
|
|
<%: Scripts.Render("~/bundles/jqueryui") %>
|
|
<%--<%: Scripts.Render("~/bundles/BrowserWindowSize") %>--%>
|
|
</asp:PlaceHolder>
|
|
<webopt:BundleReference ID="BundleReference1" runat="server" Path="~/Content/css" />
|
|
<%--<webopt:BundleReference ID="BundleReference2" runat="server" Path="~/Content/themes/base/css" />--%>
|
|
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<asp:ScriptManager ID="ScriptManager1" runat="server">
|
|
<Scripts>
|
|
<%--Framework Scripts--%>
|
|
<asp:ScriptReference Name="MsAjaxBundle" />
|
|
<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 class="navbar navbar-dark bg-dark text-light justify-content-sm-center py-0">
|
|
<uc1:mod_menuTopCompact runat="server" ID="mod_menuTopCompact" />
|
|
</nav>
|
|
<div class="container-fluid">
|
|
<asp:UpdatePanel ID="uppContainer" runat="server">
|
|
<ContentTemplate>
|
|
<div class="row">
|
|
<div class="col-12 mt-3">
|
|
<asp:ContentPlaceHolder ID="body" runat="server">
|
|
</asp:ContentPlaceHolder>
|
|
</div>
|
|
</div>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
</div>
|
|
<footer class="footer fixed-bottom bg-dark">
|
|
<div class="container-fluid">
|
|
<uc1:mod_footer runat="server" ID="mod_footer" />
|
|
</div>
|
|
</footer>
|
|
</form>
|
|
<asp:PlaceHolder ID="PlaceHolder2" runat="server">
|
|
<%: Scripts.Render("~/bundles/bootstrap") %>
|
|
</asp:PlaceHolder>
|
|
</body>
|
|
</html>
|