Files
SSC/CMS_SC/Empty.Master
T
2015-09-16 17:30:14 +02:00

113 lines
6.2 KiB
Plaintext

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Empty.master.cs" Inherits="CMS_SC.Empty" %>
<%@ Register Src="~/WebUserControls/mod_testata.ascx" TagPrefix="uc1" TagName="mod_testata" %>
<!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="description" content="CMS_SC site" />
<meta name="author" content="Steamware" />
<link rel="shortcut icon" href="~/favicon.ico" />
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<title><%: Page.Title %> - CMS_SC</title>
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
<%: Scripts.Render("~/bundles/modernizr") %>
<%: Scripts.Render("~/bundles/jquery") %>
<%: Scripts.Render("~/bundles/jqueryui") %>
</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>
<%--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="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>
<%--<asp:UpdatePanel ID="uppNavbar" runat="server">
<ContentTemplate>
<!-- Fixed navbar -->
<div class="navbar navbar-fixed-top" role="navigation" style="background-color: white;">
<div class="container-fluid" style="padding: 0px;">
<uc1:mod_testata runat="server" ID="mod_testata" />
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>--%>
<asp:ContentPlaceHolder runat="server" ID="FeaturedContent">
</asp:ContentPlaceHolder>
<div style="background-color: white;">
<asp:ContentPlaceHolder ID="MainContent" runat="server">
<div class="container" role="main">
<h1>hello world!</h1>
Area main content da customizzare
</div>
</asp:ContentPlaceHolder>
</div>
<!-- /.container -->
<asp:UpdatePanel ID="uppFooter" runat="server">
<ContentTemplate>
<footer style="background-color: white;">
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick="Timer1_Tick">
</asp:Timer>
<div class="navbar navbar-fixed-bottom" role="navigation" style="border-top: 1px solid #ABABAB; padding: 0px; background-color: white;">
<div class="container-fluid">
<div class="navbar-text navbar-left" style="margin: 0px;">
<%--margin da togliere in prod!--%>
<asp:Label ID="lblVers" runat="server" />
&copy; 2008-<%: DateTime.Now.Year %>&nbsp;|&nbsp;
<asp:Label runat="server" ID="lblDateTime"><%: DateTime.Now %></asp:Label>
</div>
<div class="navbar-text navbar-right" style="margin: 0px;">
<%--margin da togliere in prod!--%>
Powered by <a href="http://www.steamware.net" target="_blank">
<img src="Images/logoSteamware.png" alt="Steamware" height="18" />
<%--<img src="Images/logoSteamware.png" alt="Steamware" height="24" />--%>
</a>
</div>
<div class="navbar-text navbar-right" style="margin: 0px;">
<%--margin da togliere in prod!--%>
<asp:UpdateProgress ID="updtRicerca" runat="server" DisplayAfter="5" DynamicLayout="false">
<ProgressTemplate>
<div id="progress_back">
</div>
<div id="progress_top">
<asp:Image ID="ProgressBar" ImageUrl="~/images/loader.gif" runat="server" />
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</div>
</div>
</div>
</footer>
</ContentTemplate>
</asp:UpdatePanel>
</form>
<script src="Scripts/bootstrap.min.js"></script>
<asp:PlaceHolder ID="PlaceHolder2" runat="server">
<%: Scripts.Render("~/bundles/jSteamware") %>
</asp:PlaceHolder>
</body>
</html>