<div class="page-header">
{% if page is defined %}
{% set img = (page.headerImage) ? page.headerImage | first : null %}
{% endif %}
{% if img is defined and img is not null and img is not empty %}
{% set fullSrc = croppedImgSrc(img.media.url, img.cropping, { w: 1920, q: 80 }) %}
<img src="{{ fullSrc }}" alt="{% if img.mediaAlt %}{{ img.mediaAlt }}{% endif %} "/>
{% endif %}
{% set img = null %}
</div>