{# Running header for page 2+ #}
{{ resume.contact.name }}

{{ resume.contact.name }}

{% if resume.contact.title %}

{{ resume.contact.title }}

{% endif %}
{% set contact_parts = [] %} {% if resume.contact.location %}{% set _ = contact_parts.append(resume.contact.location) %}{% endif %} {% if resume.contact.email %}{% set _ = contact_parts.append(resume.contact.email) %}{% endif %} {% if resume.contact.phone %}{% set _ = contact_parts.append(resume.contact.phone) %}{% endif %} {{ contact_parts | join(' | ') }} {% if resume.contact.linkedin %} | LinkedIn {% endif %} {% if resume.contact.github %} | GitHub {% endif %} {% if resume.contact.website %} | Portfolio {% endif %}

Executive Summary

{% if resume.summary %}

{{ resume.summary }}

{% else %}

[Executive summary not configured. Add 'summary' to your profile configuration to highlight your value proposition.]

{% endif %}
{% block career_highlights %} {% if resume.career_highlights %}

Career Highlights

{% endif %} {% endblock %} {% if resume.skills %}

Core Competencies

{% for skill in resume.skills %} {{ skill }} {% endfor %}
{% endif %} {% for section in resume.sections %}

{{ section.title }}

{# Story 8.1: Employer-grouped rendering for Experience section #} {% if section.title == "Experience" and employer_groups %} {% for group in employer_groups %} {% if group.is_multi_position %} {# Multi-position employer: company header + nested role entries #}

{{ group.employer }}

{{ group.tenure_display }}
{% if group.location %}

{{ group.location }}

{% endif %} {% for item in group.positions %}
{{ item.title }} {{ item.start_date or '' }}{% if item.start_date %} - {% endif %}{{ item.end_date or 'Present' }}
{# Scope indicators at role level (AC #4) #} {% if item.scope_line %}

{{ item.scope_line }}

{% elif item.scope_budget or item.scope_team_size or item.scope_revenue %}

{% set scope_parts = [] %} {% if item.scope_team_size %}{% set _ = scope_parts.append('Led team of ' ~ item.scope_team_size) %}{% endif %} {% if item.scope_budget %}{% set _ = scope_parts.append(item.scope_budget ~ ' budget') %}{% endif %} {% if item.scope_revenue %}{% set _ = scope_parts.append(item.scope_revenue ~ ' revenue impact') %}{% endif %} {{ scope_parts | join(' | ') }}

{% endif %} {% block achievements scoped %} {% if item.bullets %}
    {% for bullet in item.bullets %}
  • {{ bullet.text }}{% if bullet.metrics %} — {{ bullet.metrics }}{% endif %}
  • {% endfor %}
{% endif %} {% endblock %}
{% endfor %}
{% else %} {# Single-position employer: standard layout #} {% set item = group.positions[0] %}

{{ item.organization or item.title }}

{{ item.start_date or '' }}{% if item.start_date %} - {% endif %}{{ item.end_date or 'Present' }}

{{ item.title }}{% if item.organization and item.location %}, {{ item.location }}{% elif item.location %} | {{ item.location }}{% endif %}

{% if item.scope_line %}

{{ item.scope_line }}

{% elif item.scope_budget or item.scope_team_size or item.scope_revenue %}

{% set scope_parts = [] %} {% if item.scope_team_size %}{% set _ = scope_parts.append('Led team of ' ~ item.scope_team_size) %}{% endif %} {% if item.scope_budget %}{% set _ = scope_parts.append(item.scope_budget ~ ' budget') %}{% endif %} {% if item.scope_revenue %}{% set _ = scope_parts.append(item.scope_revenue ~ ' revenue impact') %}{% endif %} {{ scope_parts | join(' | ') }}

{% endif %} {% if item.bullets %} {% endif %}
{% endif %} {% endfor %} {% else %} {# Fallback: original rendering when employer_groups not available #} {% for item in section.items %}

{{ item.organization or item.title }}

{{ item.start_date or '' }}{% if item.start_date %} - {% endif %}{{ item.end_date or 'Present' }}

{{ item.title }}{% if item.organization and item.location %}, {{ item.location }}{% elif item.location %} | {{ item.location }}{% endif %}

{# Scope indicators line: preferring pre-formatted scope_line from position #} {% if item.scope_line %}

{{ item.scope_line }}

{% elif item.scope_budget or item.scope_team_size or item.scope_revenue %} {# Legacy fallback for work unit scope data #}

{% set scope_parts = [] %} {% if item.scope_team_size %}{% set _ = scope_parts.append('Led team of ' ~ item.scope_team_size) %}{% endif %} {% if item.scope_budget %}{% set _ = scope_parts.append(item.scope_budget ~ ' budget') %}{% endif %} {% if item.scope_revenue %}{% set _ = scope_parts.append(item.scope_revenue ~ ' revenue impact') %}{% endif %} {{ scope_parts | join(' | ') }}

{% endif %} {% if item.bullets %} {% endif %}
{% endfor %} {% endif %}
{% endfor %} {% if resume.get_active_certifications() %}

Certifications

{% endif %} {% block board_roles %} {% if resume.get_sorted_board_roles() %}

Board & Advisory Roles

{% for role in resume.get_sorted_board_roles() %}
{{ role.organization }} {{ role.format_date_range() }}

{{ role.role }}

{% if role.focus %}

{{ role.focus }}

{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block publications %} {% if resume.get_sorted_publications() %}

Publications & Speaking

{% for pub in resume.get_sorted_publications() %}
{% if pub.is_speaking %} {# Speaking format: "Venue (Year) - Title" #} {{ pub.venue }} ({{ pub.year }}) - {% if pub.url %}{{ pub.title }}{% else %}{{ pub.title }}{% endif %} {% else %} {# Written format: "Title, Venue (Year)" #} {% if pub.url %}{{ pub.title }}{% else %}{{ pub.title }}{% endif %}, {{ pub.venue }} ({{ pub.year }}) {% endif %}
{% endfor %}
{% endif %} {% endblock %} {% if resume.education %}

Education

{% for edu in resume.education %} {% if edu.display is not defined or edu.display %}

{{ edu.degree }}
{{ edu.institution }}{% if edu.graduation_year %}, {{ edu.graduation_year }}{% endif %} {% if edu.honors %}{{ edu.honors }}{% endif %}

{% endif %} {% endfor %}
{% endif %} {% if resume.tailored_notice_text %} {% endif %}