{{ profile.full_name }}

{% if profile.email %} {{ profile.email }} {% endif %} {% if profile.phone %} | {{ profile.phone }} {% endif %} {% if profile.location %} | {{ profile.location }} {% endif %} {% if profile.website %} | {{ profile.website }} {% endif %}
{% for section in sections %}

{{ section.title.content }}

{% if section.type == 'detailed' %} {% for item in section.content %}
{{ item.title.content }} {% if item.date_range.start_date or item.date_range.end_date %} {% set start = item.date_range.start_date or '' %} {% set end = (item.date_range.end_date or '') | replace('present', 'Present') %} {{ start }}{% if start and end %} - {% endif %}{{ end }} {% endif %}
{% if item.subtitle.content %}
{{ item.subtitle.content }}
{% endif %} {% if item.bullets %}
    {% for bullet in item.bullets %}
  • {{ bullet.content }}
  • {% endfor %}
{% endif %}
{% endfor %} {% elif section.type == 'simple' %} {% if section.content %} {% endif %} {% elif section.type == 'paragraph' %}

{{ section.content.content }}

{% endif %}
{% endfor %}