{# partials/header.html — Hero section Context: report_config (dict) — from CONFIG/REPORT_CONFIG/report.yaml profile_data (str) — user label shown in the header title (str) — report title current_date (str) — execution date/time string env_label (str) — environment tag, e.g. "DEV" (optional) #}
{% if report_config.project.logo_src %} Logo {% endif %}

{{ report_config.project.name or title }}

{{ report_config.project.subtitle }}

Executed by {{ profile_data | default("Automation Engineer") }}

Executed on {{ current_date }}

{% set _env = environment | default(env_label, true) %} {% if _env %}
{{ _env }}
{% endif %}
{% if note_key %}
{% endif %}