<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

<asp:Content ContentPlaceHolderID="TitleContent" runat="server">Home</asp:Content>
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
	<h2>Welcome</h2>

	<p>
		Welcome to <strong>Video Game Quotes</strong>. You can <%= Html.ActionLink("browse", "Browse", "Quote") %>, 
		<%= Html.ActionLink("rate", "Best", "Quote") %> and <%= Html.ActionLink("submit", "Submit", "Quote") %> 
		quotes from video games. You do not need to register or login to perform any of these tasks.
		 Participation is encouraged.
	</p>

	<p>
		If you see a quote that is inaccurate, fake, spelled wrong, spam or you&rsquo;re just straight up
		concerned about it, please flag (<span class="quote-flag-icon" title="click on one of these things"></span>) 
		the quote in question. It won&rsquo;t be removed immediately, but it will be flagged for review by our 
		crack team of administrators (i.e. me).
	</p>

	<p>
		If you have ideas to make this place suck less, or if you just want to express your admiration
		for its creator (i.e. me), don&rsquo;t hesitate to contact him (i.e. me) using the
		<%= Html.ActionLink("contact", "Contact", "Home") %> form.
	</p>

	<p>
		Here is the quote of the day:
	</p>

	<% Html.RenderAction("QuoteOfTheDay", "Quote"); %>
</asp:Content>