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

{{ exp.meta.position|default(exp.meta.title) }} {% if exp.meta.current or not exp.meta.end_date %} Current {% endif %}

{{ exp.meta.company }} {% 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 %}
{% else %}

No experience entries yet.

{% endif %}
{% endblock %}