2011-02-09 03:50:45 +00:00
|
|
|
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
|
|
|
|
<head>
|
|
|
|
<title>Video Game Quotes :: <asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
2011-02-11 05:21:31 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/media/css/reset.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/media/css/global.css" />
|
2011-02-14 11:01:31 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/media/css/quote.css" />
|
2011-02-11 05:21:31 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="/media/images/favicon.png" />
|
2011-02-09 03:50:45 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="header">
|
2011-02-11 05:21:31 +00:00
|
|
|
<div class="content-container">
|
|
|
|
<div id="logo">
|
2011-02-27 01:14:56 +00:00
|
|
|
<h1 class="mir"><%= Html.ActionLink("Video Game Quotes", "Index", "Home", null, new { title = "Video Game Quotes" })%></h1>
|
2011-02-11 05:21:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="main-menu">
|
2011-02-14 07:39:45 +00:00
|
|
|
<ul class="clearfix menu">
|
2011-02-17 20:55:47 +00:00
|
|
|
<% Html.RenderAction("MainMenu", "Home"); %>
|
2011-02-11 05:21:31 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2011-02-09 03:50:45 +00:00
|
|
|
</div>
|
|
|
|
|
2011-02-11 05:21:31 +00:00
|
|
|
<div class="content-container">
|
|
|
|
<div id="main">
|
|
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer">
|
2011-02-27 01:14:56 +00:00
|
|
|
<p>
|
2011-02-11 05:21:31 +00:00
|
|
|
© <%= DateTime.UtcNow.Year %> <a href="http://tommymontgomery.com/" title="Who is this man?">Tommy Montgomery</a><br />
|
2011-02-28 00:38:47 +00:00
|
|
|
<%= Html.ActionLink("about", "about", "home") %> |
|
|
|
|
<%= Html.ActionLink("credits", "about", "home", null, null, "credits", null, null) %> |
|
2011-02-17 20:55:47 +00:00
|
|
|
<% if (!Request.IsAuthenticated) { %>
|
|
|
|
<a href="#" id="login-link">login</a>
|
|
|
|
<% } else { %>
|
|
|
|
<%= Html.ActionLink("logout", "logout", "home", new { redirectUrl = Request.Path }, null)%>
|
|
|
|
<% } %>
|
2011-02-27 01:14:56 +00:00
|
|
|
</p>
|
2011-02-09 03:50:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-02-11 05:21:31 +00:00
|
|
|
|
|
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
|
2011-02-17 20:55:47 +00:00
|
|
|
<script type="text/javascript" src="/media/js/jquery.cookie.js"></script>
|
2011-02-15 00:14:24 +00:00
|
|
|
<script type="text/javascript" src="/media/js/vgquotes.js"></script>
|
2011-02-11 05:21:31 +00:00
|
|
|
<asp:ContentPlaceHolder ID="DeferrableScripts" runat="server" />
|
2011-02-09 03:50:45 +00:00
|
|
|
</body>
|
|
|
|
</html>
|