{% if site.data.data.experiences %}

{{site.data.data.experiences.title}}

{% for experience in site.data.data.experiences.experiences %}

{{ experience.role }}

{{ experience.time }}
{{ experience.company }}
{% if experience.details %}

{{ experience.details }}

{% if experience.bullets %}
    {% for bullet in experience.bullets %}
  • {{ bullet }}
  • {% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}