2011-02-09 03:50:45 +00:00
|
|
|
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
|
|
|
|
|
2011-02-10 04:39:59 +00:00
|
|
|
<asp:Content ContentPlaceHolderID="TitleContent" runat="server">Home</asp:Content>
|
2011-02-11 05:21:31 +00:00
|
|
|
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<h2>Welcome</h2>
|
|
|
|
|
|
|
|
<p>
|
2011-02-27 01:14:56 +00:00
|
|
|
Welcome to <strong>Video Game Quotes</strong>. You can <%= Html.ActionLink("browse", "browse", "quote") %>,
|
2011-02-11 05:21:31 +00:00
|
|
|
<%= Html.ActionLink("rate", "best", "quote") %> and <%= Html.ActionLink("submit", "submit", "quote") %>
|
2011-02-27 01:14:56 +00:00
|
|
|
quotes from video games. You do not need to register or login to perform any of these tasks.
|
|
|
|
Participation is encouraged.
|
2011-02-11 05:21:31 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2011-02-27 01:14:56 +00:00
|
|
|
If you see a quote that is inaccurate, fake, spelled wrong, spam or you’re just straight up
|
2011-02-28 10:38:11 +00:00
|
|
|
concerned about it, please flag (<span class="quote-flag-icon" title="click on one of these things"></span>)
|
2011-02-27 01:14:56 +00:00
|
|
|
the quote in question. It won’t be removed immediately, but it will be flagged for review by our
|
|
|
|
crack team of administrators (i.e. me).
|
2011-02-11 05:21:31 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
If you have ideas to make this place suck less, or if you just want to express your admiration
|
2011-02-27 01:14:56 +00:00
|
|
|
for its creator (i.e. me), don’t hesitate to contact him (i.e. me) using the
|
2011-02-11 05:21:31 +00:00
|
|
|
<%= Html.ActionLink("contact", "contact", "home") %> form.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Here is the quote of the day:
|
|
|
|
</p>
|
2011-02-28 00:38:47 +00:00
|
|
|
|
|
|
|
<% Html.RenderAction("QuoteOfTheDay", "Quote"); %>
|
2011-02-11 05:21:31 +00:00
|
|
|
</asp:Content>
|