{% extends app.config.twig.template %} {% block title %} {{ app.config.app.title | default('Resume') }} {% endblock %} {% block body %}

{% if basics.name is not empty %} {{ basics.name }} {% else %} {{ app.config.app.title|default('Resume') }} {% endif %} {% if basics.label is not empty %} {{ basics.label }} {% endif %}


{% if basics.summary is not empty %}

{{ basics.summary }}

{% endif %}

Experience

{% for position in work %}

{{ position.company }} {{ position.startDate|date('Y') }} - {% if position.endDate is not defined %} Current {% else %} {{ position.endDate|date('Y') }} {% endif %} (~ {% if position.endDate is not defined %} {{ position.startDate|date_diff }} {% else %} {{ position.startDate|date_diff(position.endDate) }} {% endif %} )

{{ position.position }}

{{ position.summary|raw }}

{% if position.highlights is not empty and position.highlights is defined %}
Highlights
{% for highlight in position.highlights %}
{{ highlight|raw }}
{% endfor %}
{% endif %}
{% endfor %}

Contact

    {% if basics.email is not empty %}
  • [Click to view email]
  • {% endif %} {% if basics.phone is not empty %}
  • {{ basics.phone }}
  • {% endif %} {% if basics.website is not empty %}
  • {{ basics.website }}
  • {% endif %} {% if basics.location|length > 0 and basics.location is not empty %}
  • {% set location = basics.location %} {% if location.address is not empty %} {{ location.address }}
    {% endif %} {% if location.city is not empty %} {{ location.city }}, {% endif %} {% if location.region is not empty %}  {{ location.region }}, {% endif %} {% if location.countryCode is not empty %}  {{ location.countryCode }} {% endif %}
  • {% endif %}
  • {% for profile in basics.profiles %} {{ render_profile(profile)|raw }} {% endfor %}
{% if skills is defined and skills is not empty %}

Skills

{% for skill in skills %}
{{ skill.name }}
{{ skill.keywords|join(', ')|raw }}
{% endfor %}
{% endif %}
{% endblock %}