Created
January 17, 2018 19:56
-
-
Save chain-xvi/37527ea8ec35c2490656c1851752f4c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="SmartCitiesCountDown.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> | |
<webopt:bundlereference runat="server" path="~/Content/css" /> | |
<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 https://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 class="navbar navbar-default navbar-fixed-top"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand" runat="server" href="~/"> | |
<img src="Assets/CTSD-WEB-INITIATIVES-SMART-CITY[1].png" height="30" width="100" alt="Logo" /></a> | |
</div> | |
<div class="navbar-collapse collapse"> | |
<ul class="nav navbar-nav navbar-right"> | |
<li><a runat="server" href="~/">Overview</a></li> | |
<li><a runat="server" href="~">Features</a></li> | |
<li><a runat="server" href="~">Gallery</a></li> | |
<li><a runat="server" href="~">Team</a></li> | |
<li><a runat="server" href="~">Contact</a></li> | |
<li><button type="button" class="btn btn-info navbar-btn">Register Now</button></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<div class="container-fluid body-content"> | |
<asp:ContentPlaceHolder ID="MainContent" runat="server"> | |
</asp:ContentPlaceHolder> | |
<hr /> | |
<%--<footer> | |
<p>© <%: DateTime.Now.Year %> - My ASP.NET Application</p> | |
</footer>--%> | |
</div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment