{{ 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 %}
-
{% for bullet in section.content %}
- {{ bullet.content }} {% endfor %}
{{ section.content.content }}
{% endif %}