@inherits UmbracoViewPage @using ContentModels = Umbraco.Cms.Web.Common.PublishedModels

@Model.EducationHistoryTitle

@if (Model.EducationHistory != null && Model.EducationHistory.Any()) { foreach (var item in Model.EducationHistory) {

@item.Title

@item.PlaceName

@item.StartDate.ToString("MM/yyyy") - @(item.EndDate != null && item.EndDate > DateTime.MinValue ? item.EndDate.ToString("MM/yyyy") : "Present")
@item.Details
} }