<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/Site.Master" %> <%@ Import Namespace="VideoGameQuotes.Web.Models" %> Best: <%= Model.Start %> – <%= Model.End %>

<% if (Model.HasPrevious) { %> <%= Html.ActionLink("previous", "best", new { start = Model.PreviousStart, end = Model.PreviousEnd }) %> <% } %> <%= Html.ActionLink("next", "best", new { start = Model.NextStart, end = Model.NextEnd }) %>

<% foreach (var quote in Model.Quotes) { Html.RenderPartial("SingleQuote", new QuoteModel { Quote = quote, User = Model.User }); } %>