Files
ScheMe/ScheMe-SP/Bootstrap.Master
T
2017-09-01 14:54:52 +02:00

99 lines
4.6 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 SHERPA</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>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<uc1:mod_top runat="server" ID="mod_top" />
</div>
</div>
<div style="min-height: 4.5em;"></div>
</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>
<footer>
<div class="navbar navbar-inverse navbar-fixed-bottom" role="navigation" style="min-height: 2em; padding-top: 0.4em;">
<div class="container-fluid" style="line-height: 1.5em;">
<uc1:mod_bottom runat="server" ID="mod_bottom" />
</div>
<div class="container-fluid" style="font-size: 0.7em;">
<p class="navbar-text navbar-left" style="margin-bottom: 0px; margin-top: 0px; margin-left: 0px;">
<b><%: SteamWare.memLayer.ML.CRS("CodModulo") %></b>
<asp:Label runat="server" ID="lblVers" />
</p>
<p class="navbar-text navbar-right" style="margin-bottom: 0; margin-top: 0; margin-right: 0.1em;">
2007-<%: DateTime.Now.Year %>&copy;
<asp:Image ID="logoSW" ImageUrl="~/images/logoSteamware.png" runat="server" Height="22px" AlternateText="SteamWare" />
</p>
</div>
</div>
</footer>
</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>