{% 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('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 %} )

{{ position.position }}

{{ position.summary|raw }}

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

Contact

    {% if app.config.app.phone is not empty %}
  • Phone
  • {% endif %}
  • {% if basics.email is not empty %} {{ basics.email }} {% 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 %}
{{ form_start(contact_form) }}
Contact {% if basics.email is not empty %}{{ basics.email }}{% endif %}
{{ form_label(contact_form.name) }}
{{ form_widget(contact_form.name) }}
{{ form_label(contact_form.email) }}
{{ form_widget(contact_form.email) }}
{{ form_label(contact_form.message) }}
{{ form_widget(contact_form.message, {'attr':{'placeholder': "Please leave me a message. I will get back to you as soon as possible."}}) }}
{{ form_label(contact_form.submit) }}
{{ form_widget(contact_form.submit) }}
{{ form_rest(contact_form) }}
{{ form_end(contact_form) }}

Verify

Verify that you are a human please.

{% endblock %} {% block javascripts_foot %} {% endblock %} {% block inline_js_foot %} {% endblock %}