9 lines
284 B
Twig
9 lines
284 B
Twig
|
<div class="experience__role">
|
||
|
{% spaceless %}
|
||
|
{{ experience.role ~ ' from ' ~ experience.start ~ ' to ' ~ experience.end|default('Present') }}
|
||
|
{% if experience.location %}
|
||
|
({{ experience.location }})
|
||
|
{% endif %}
|
||
|
{% endspaceless %}.
|
||
|
</div>
|