@using TightWiki.Models @model TightWiki.Models.ViewModels.Profile.PublicViewModel @{ Layout = "/Views/Shared/_Layout.cshtml"; }
@if (!string.IsNullOrEmpty(Model.ErrorMessage)) {
@Html.Raw(Model.ErrorMessage)
} @if (!string.IsNullOrEmpty(Model.SuccessMessage)) {
@Html.Raw(Model.SuccessMessage)
} @if (string.IsNullOrWhiteSpace(Model.Navigation) == false) {
 
@Html.ValidationMessageFor(m => m.AccountName)
@Html.LabelFor(m => m.AccountName) @Html.DisplayFor(m => m.AccountName)
@Html.ValidationMessageFor(m => m.Country)
@Html.LabelFor(m => m.Country) @Html.DisplayFor(m => m.Country)
@Html.ValidationMessageFor(m => m.Language)
@Html.LabelFor(m => m.Language) @Html.DisplayFor(m => m.Language)
@Html.ValidationMessageFor(m => m.TimeZone)
@Html.LabelFor(m => m.TimeZone) @Html.DisplayFor(m => m.TimeZone)
@Html.ValidationMessageFor(m => m.Biography)
@Html.LabelFor(m => m.Biography)
@Html.Raw(Model.Biography)
} @if (Model.RecentlyModified.Count > 0) {

Recently Modified

@foreach (var h in Model.RecentlyModified) { }
Page Modified Summary
@Html.DisplayTextFor(x => h.Name) @Html.DisplayTextFor(x => h.ModifiedDate) @Html.DisplayTextFor(x => h.ChangeSummary)
}