60 lines
2.2 KiB
Plaintext
60 lines
2.2 KiB
Plaintext
<%@ 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"/>
|
|
<link rel="stylesheet" type="text/css" href="/media/css/reset.css" />
|
|
<link rel="stylesheet" type="text/css" href="/media/css/global.css" />
|
|
<link rel="shortcut icon" type="image/png" href="/media/images/favicon.png" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="header">
|
|
<div class="content-container">
|
|
<div id="logo">
|
|
<h1>Video Game Quotes</h1>
|
|
</div>
|
|
|
|
<div id="main-menu">
|
|
<ul class="clearfix">
|
|
<li><%= Html.ActionLink("Recent", "Recent", "Quote") %></li>
|
|
<li><%= Html.ActionLink("Random", "Random", "Quote") %></li>
|
|
<li><%= Html.ActionLink("Best", "Best", "Quote") %></li>
|
|
<li><%= Html.ActionLink("Submit", "Submit", "Quote") %></li>
|
|
<li><%= Html.ActionLink("About", "About", "Home") %></li>
|
|
<li class="searchbox">
|
|
<% using (Html.BeginForm("search", "quote", FormMethod.Get)) { %>
|
|
<div>
|
|
<%= Html.TextBox("term") %>
|
|
<input type="image" src="/media/images/search.png" alt="search" title="search quotes, games, systems" />
|
|
</div>
|
|
<% } %>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content-container">
|
|
<div id="main">
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<div class="content-container">
|
|
© <%= DateTime.UtcNow.Year %> <a href="http://tommymontgomery.com/" title="Who is this man?">Tommy Montgomery</a><br />
|
|
If you steal something, I'll murder your family.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
|
|
<asp:ContentPlaceHolder ID="DeferrableScripts" runat="server" />
|
|
</body>
|
|
</html>
|