41 lines
1.3 KiB
Twig
41 lines
1.3 KiB
Twig
<h1 id="experience">Experience</h1>
|
|
<div class="uk-panel uk-panel-header">
|
|
|
|
<div class="resume-positions">
|
|
{% for position in work %}
|
|
<h3 class="company uk-panel-title uk-animation-slide-left">
|
|
{{ position.company }}
|
|
<small class="uk-align-right">
|
|
{{ position.startDate|date('M, Y') }} -
|
|
{% if position.endDate is not defined %}
|
|
Current
|
|
{% else %}
|
|
{{ position.endDate|date('M, Y') }}
|
|
{% endif %}
|
|
|
|
(~
|
|
{% if position.endDate is not defined %}
|
|
{{ position.startDate|date_diff }}
|
|
{% else %}
|
|
{{ position.startDate|date_diff(position.endDate) }}
|
|
{% endif %}
|
|
)
|
|
</small>
|
|
</h3>
|
|
<h5>{{ position.position }}</h5>
|
|
<p class="summary uk-text-primary uk-text-large">
|
|
{{ position.summary|raw }}
|
|
</p>
|
|
{% if position.highlights is defined and position.highlights is not empty %}
|
|
<dl class="uk-description-list-horizontal uk-animation-slide-right">
|
|
<dt>Highlights</dt>
|
|
{% for highlight in position.highlights %}
|
|
<dd class="uk-margin-small-top uk-margin-bottom">{{ highlight|raw }} {# raw is deprecated in 2.0 #}</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
{% endif %}
|
|
<hr class="uk-hr-light"/>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div> |