{% extends "base.html" %} {% block content %}
{% for exp in experience %}

{{ exp.meta.title }}

{{ exp.meta.company }} • {{ exp.meta.position }} {% if exp.meta.location %} • {{ exp.meta.location }}{% endif %}
{{ exp.meta.start_date|date("%B %Y") }} - {% if exp.meta.current or not exp.meta.end_date %} Present {% else %} {{ exp.meta.end_date|date("%B %Y") }} {% endif %}
{{ exp.content|safe }}
{% endfor %}
{% endblock %}