{% extends "public/base.html" %} {% block title %}About | {{ profile.name if profile }}{% endblock %} {% block content %} {% if not profile or profile.show_bio %}
{% if profile and profile.image_url %} {{ profile.name }} {% else %}
👨‍💻 No Image
{% endif %}
{{ profile.label_bio if profile and profile.label_bio }}

{{ profile.bio if profile and profile.bio }}

{{ profile.about_location_label or 'LOCATION' }} {{ profile.institution if profile }}
{% endif %} {% if not profile or profile.show_research_areas %}

{{ profile.label_research_areas if profile and profile.label_research_areas }}

{% for area in research_areas %} {{ area.name }} {% endfor %}
{% endif %} {% if not profile or profile.show_education %}

{{ profile.label_education if profile and profile.label_education }}

{% for edu in education %}

{{ edu.degree }}

{{ edu.field }}

{{ edu.institution }}

{{ edu.year }}
{% if edu.description %}

{{ edu.description }}

{% endif %}
{% endfor %}
{% endif %} {% if not profile or profile.show_experience %}

{{ profile.label_experience if profile and profile.label_experience }}

{% for exp in experiences %}

{{ exp.position }}

{{ exp.organization }}

{% if exp.department %}

{{ exp.department }}

{% endif %}
{{ exp.start_date }} - {{ exp.end_date if exp.end_date else 'Present' }} {% if exp.is_current %} ● Current {% endif %}
{% endfor %}
{% endif %} {% if not profile or profile.show_awards %}

{{ profile.label_awards if profile and profile.label_awards }}

{% for award in awards %}

{{ award.title }}

{% if award.organization %}

{{ award.organization }}

{% endif %} {{ award.year }}
{% endfor %}
{% endif %} {% for section in custom_sections %}

{{ section.title }}

{% if section.subtitle %}

{{ section.subtitle }}

{% endif %}
{% if section.year %}
{{ section.year }}
{% endif %} {% if section.tags %}
{% for tag in section.tags.split(',') %} {{ tag.strip() }} {% endfor %}
{% endif %}
{{ section.content | safe }}
{% if section.items %}
{% for item in section.items|sort(attribute='order') %}

{% if item.link %} {{ item.title }} ↗ {% else %} {{ item.title }} {% endif %}

{% if item.subtitle %}

{{ item.subtitle }}

{% endif %} {% if item.content %}

{{ item.content }}

{% endif %}
{% if item.year %} {{ item.year }} {% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% endblock %}