@page @model Snootalogue.Pages.IndexModel @{ ViewData["Title"] = "Home"; } @*

Documents

*@
@foreach (var item in Model.Documents) {
@Html.DisplayFor(modelItem => item.Title)
By @Html.DisplayFor(modelItem => item.Authors)
Category: @Html.DisplayFor(modelItem => item.Category)
@Html.DisplayFor(modelItem => item.Tags)
@{string hash = item.Hash.Substring(0, 8);}
@* TODO: replace these with font awesome or something *@
}