{% extends "base.html" %} {% block content %} {# Load resume data from site.data (preferred) or page.metadata (fallback) #} {% set resume = site.data.get('resume') if site.data is defined and site.data else page.metadata %}
{# Header Section #}

{{ resume.get('name', page.title) }}

{% if resume.get('headline') %}

{{ resume.get('headline') }}

{% endif %} {# Contact Information #} {% if resume.get('contact') %}
{% set contact = resume.get('contact') %} {% if contact.get('email') %} {{ contact.get('email') }} {% endif %} {% if contact.get('phone') %} 📱 {{ contact.get('phone') }} {% endif %} {% if contact.get('location') %} 📍 {{ contact.get('location') }} {% endif %} {% if contact.get('website') %} {% set website_display = contact.get('website') | replace('https://', '') | replace('http://', '') %} 🌐 {{ website_display }} {% endif %} {% if contact.get('linkedin') %} 💼 LinkedIn {% endif %} {% if contact.get('github') %} 🔗 GitHub {% endif %}
{% endif %}
{# Summary/About Section #} {% if resume.get('summary') or content %}
{% if resume.get('summary') %}

{{ resume.get('summary') }}

{% endif %} {% if content %}
{{ content | safe }}
{% endif %}
{% endif %} {# Experience Section #} {% if resume.get('experience') %}

Experience

{% for job in resume.get('experience') %}

{{ job.get('title') }}

{{ job.get('company') }}

{{ job.get('start_date') }} - {{ job.get('end_date', 'Present') }} {% if job.get('location') %} {{ job.get('location') }} {% endif %}
{% if job.get('description') %}

{{ job.get('description') }}

{% endif %} {% if job.get('highlights') and job.get('highlights') is iterable and job.get('highlights') is not string %}
    {% for highlight in job.get('highlights') %}
  • {{ highlight }}
  • {% endfor %}
{% endif %} {% if job.get('technologies') and job.get('technologies') is iterable and job.get('technologies') is not string %}
Technologies: {% for tech in job.get('technologies') %} {{ tech }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {# Education Section #} {% if resume.get('education') %}

Education

{% for edu in resume.get('education') %}

{{ edu.get('degree') }}

{{ edu.get('institution') }}

{{ edu.get('start_date') }} - {{ edu.get('end_date', 'Present') }} {% if edu.get('location') %} {{ edu.get('location') }} {% endif %}
{% if edu.get('gpa') %}

GPA: {{ edu.get('gpa') }}

{% endif %} {% if edu.get('honors') %}
    {% for honor in edu.get('honors') %}
  • {{ honor }}
  • {% endfor %}
{% endif %} {% if edu.get('coursework') %}
Relevant Coursework: {{ edu.get('coursework') | join(', ') }}
{% endif %}
{% endfor %}
{% endif %} {# Skills Section #} {% if resume.get('skills') %}

Skills

{% for skill_group in resume.get('skills') %}

{{ skill_group.get('category') }}

{% for skill in skill_group.get('items') %} {{ skill }} {% endfor %}
{% endfor %}
{% endif %} {# Projects Section #} {% if resume.get('projects') %}

Projects

{% for project in resume.get('projects') %}

{% if project.get('url') %} {{ project.get('name') }} {% else %} {{ project.get('name') }} {% endif %}

{% if project.get('role') %}

{{ project.get('role') }}

{% endif %}
{% if project.get('date') %}
{{ project.get('date') }}
{% endif %}
{% if project.get('description') %}

{{ project.get('description') }}

{% endif %} {% if project.get('highlights') %}
    {% for highlight in project.get('highlights') %}
  • {{ highlight }}
  • {% endfor %}
{% endif %} {% if project.get('technologies') %}
Technologies: {% for tech in project.get('technologies') %} {{ tech }} {% endfor %}
{% endif %} {% if project.get('github') or project.get('demo') %} {% endif %}
{% endfor %}
{% endif %} {# Certifications Section #} {% if resume.get('certifications') %}

Certifications

{% for cert in resume.get('certifications') %}

{{ cert.get('name') }}

{{ cert.get('issuer') }}

{% if cert.get('date') %}

{{ cert.get('date') }}

{% endif %} {% if cert.get('url') %} View Credential → {% endif %}
{% endfor %}
{% endif %} {# Awards Section #} {% if resume.get('awards') %}

Awards & Recognition

{% for award in resume.get('awards') %}

{{ award.get('name') }}

{{ award.get('issuer') }}

{% if award.get('date') %}

{{ award.get('date') }}

{% endif %} {% if award.get('description') %}

{{ award.get('description') }}

{% endif %}
{% endfor %}
{% endif %} {# Languages Section #} {% if resume.get('languages') %}

Languages

{% for lang in resume.get('languages') %}
{{ lang.get('language') }} {{ lang.get('proficiency') }}
{% endfor %}
{% endif %} {# Volunteer Section #} {% if resume.get('volunteer') %}

Volunteer Experience

{% for vol in resume.get('volunteer') %}

{{ vol.get('role') }}

{{ vol.get('organization') }}

{{ vol.get('start_date') }} - {{ vol.get('end_date', 'Present') }}
{% if vol.get('description') %}

{{ vol.get('description') }}

{% endif %}
{% endfor %}
{% endif %} {# Page Content (bio, personal statement, etc.) #} {% if content and content.strip() %}
{{ content | safe }}
{% endif %}
{% endblock %}