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

@Model.WorkHistoryTitle

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

@item.Title

@item.PlaceName

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