@model IEnumerable @{ ViewData["Title"] = "Blog spot"; }
@foreach (var entry in Model) {

@entry.Title

  • Sample pages using ASP.NET MVC 6
}