26 lines
1000 B
Plaintext
26 lines
1000 B
Plaintext
@inherits UmbracoViewPage<ContentModels.IWorkHistoryControls>
|
|
|
|
@using ContentModels = Umbraco.Cms.Web.Common.PublishedModels
|
|
|
|
|
|
<div class="education group">
|
|
<div class="heading">
|
|
<h2 class="text-center">@Model.EducationHistoryTitle</h2>
|
|
</div>
|
|
@if (Model.EducationHistory != null && Model.EducationHistory.Any())
|
|
{
|
|
foreach (var item in Model.EducationHistory)
|
|
{
|
|
<div class="item">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h3>@item.Title</h3>
|
|
<h4 class="organization">@item.PlaceName</h4>
|
|
</div>
|
|
<div class="col-md-6"><span class="period">@item.StartDate.ToString("MM/yyyy") - @(item.EndDate != null && item.EndDate > DateTime.MinValue ? item.EndDate.ToString("MM/yyyy") : "Present")</span></div>
|
|
</div>
|
|
<div class="text-muted">@item.Details</div>
|
|
</div>
|
|
}
|
|
}
|
|
</div> |