{% extends "public/base.html" %} {% block title %}{{ profile.name if profile }} | {{ profile.institution if profile and profile.institution else 'Portfolio' }}{% endblock %} {% block content %}

{{ profile.bio[:200] if profile and profile.bio }}...

Quick_Stats
{{ profile.stat1_value if profile and profile.stat1_value else '0+' }}
{{ profile.stat1_label if profile and profile.stat1_label else 'Stat 1' }}
{{ profile.stat2_value if profile and profile.stat2_value else '0+' }}
{{ profile.stat2_label if profile and profile.stat2_label else 'Stat 2' }}
{{ profile.stat3_value if profile and profile.stat3_value else '0+' }}
{{ profile.stat3_label if profile and profile.stat3_label else 'Stat 3' }}
{% if not profile or profile.show_research_areas %} {% if research_areas %}

{{ profile.label_research_areas if profile and profile.label_research_areas else 'Research Areas' }}

{% for area in research_areas %} {{ area.name }} {% endfor %}
{% endif %} {% endif %}

Quick_Links

📚

{{ profile.link1_title if profile and profile.link1_title else 'Research' }}

{{ profile.link1_description if profile and profile.link1_description else 'Lorem ipsum dolor sit amet.' }}

💼

{{ profile.link2_title if profile and profile.link2_title else 'Projects' }}

{{ profile.link2_description if profile and profile.link2_description else 'Lorem ipsum dolor sit amet.' }}

🎓

{{ profile.link3_title if profile and profile.link3_title else 'Students' }}

{{ profile.link3_description if profile and profile.link3_description else 'Lorem ipsum dolor sit amet.' }}

{% if not profile or profile.show_contact_info %}
{{ profile.label_contact_info if profile and profile.label_contact_info }}
{% if profile and profile.email %}
Email
{{ profile.email }}
{% endif %} {% if profile and profile.phone %}
Phone
{{ profile.phone }}
{% endif %} {% if profile and profile.address %}
Address
{{ profile.address }}
{% endif %}
{% endif %} {% endblock %}