fresh-theme-elegant/src/partials/experience.html

22 lines
739 B
HTML
Raw Normal View History

2016-05-16 01:56:15 +01:00
{{#if r.employment}}
<div id="work-experience" class="detail">
<div class="icon"><i class="fs-lg fa fa-building"></i><span class="mobile-title">Work Experience</span></div>
<div class="info">
<h4 class="title text-uppercase">Work Experience</h4>
<p>{{r.employment.summary}}</p>
<ul class="list-unstyled">
{{#each r.employment.history}}
<li class="card card-nested clearfix">
<div class="content">
<p class="clear-margin relative"><strong>{{{position}}}</strong>,&nbsp;<a href="{{url}}" target="_blank">{{employer}}</a></p>
{{> date}}
{{{summary}}}
{{> highlights}}
</div>
</li>
{{/each}}
</ul>
</div>
</div>
{{/if}}