{% extends "base.html" %} {% block content %}
{% if education %}
{% for edu in education %}

{{ edu.meta.title }}

{{ edu.meta.institution }} {% if edu.meta.location %} · {{ edu.meta.location }}{% endif %}
{{ edu.meta.degree }}{% if edu.meta.field %} in {{ edu.meta.field }}{% endif %} {% if edu.meta.gpa %} · GPA: {{ edu.meta.gpa }}{% endif %}
{{ edu.meta.start_date|date("%B %Y") }} – {% if edu.meta.end_date %}{{ edu.meta.end_date|date("%B %Y") }}{% else %}Present{% endif %}
{{ edu.content|safe }}
{% endfor %}
{% else %}

No education entries yet.

{% endif %}
{% endblock %}