-
Notifications
You must be signed in to change notification settings - Fork 0
/
NettlesMasterPage.master
75 lines (67 loc) · 2.55 KB
/
NettlesMasterPage.master
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="NettlesMasterPage.master.cs"
Inherits="NettlesMasterPage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<!-- Browser Icon -->
<link rel="icon" href="img/nettles_icon.png" type="image/png" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- Facebook Icon -->
<link rel="image_src" href="img/nettles_icon.png" type="image/png" />
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="Theme/layout.css" media="all" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="Theme/ie6.css" media="all" />
<![endif]-->
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1804445-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="branding">
<img src="NettlesBanner.jpg" alt="The Nettles logo" id="banner_left" />
<h1>
The Nettles</h1>
<ul id="tagline">
<li>Celtic.</li>
<li>Acoustic.</li>
<li>Folkadelic.</li>
</ul>
<!-- <img src="NettlesBannerTag.jpg"" alt="Celtic. Acoustic. Folkadelic" id="banner_right"/> -->
<!-- search box in branding area? -->
</div>
<div id="menu">
<ul>
<li><a href="Default.aspx">Home</a></li>
<li><a href="Shows.aspx">Shows</a></li>
<li><a href="About.aspx">About</a></li>
<li><a href="Media.aspx">Media</a></li>
<li><a href="Store.aspx">Store</a></li>
<li><a href="Contact.aspx">Contact</a></li>
<!-- <li><a href="#">RSS</a></li> -->
</ul>
</div>
<div id="content">
<div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
<div id="footer">
<p>
Copyright © 2011-2016 by <a href="mailto:[email protected]">Kevin Johnsrude</a>. All rights reserved.
</p>
</div>
</form>
</body>
</html>