{% set poster = getProductPoster(entity, 'default_pr_poster') %}
<h1>{{ getProductLocalTitle(entity) }}</h1>
{% if poster is not empty and poster.poster_url is defined and poster.poster_url is not empty %}
<a href="{{ poster.original_url }}" data-fancybox data-width="{{ poster.original_width }}" data-height="{{ poster.original_height }}">
<img src="{{ poster.poster_url }}" alt="movie-cover">
</a>
{% else %}
<img src="{{ asset('assets/press_site/images/default-cover-image.jpg') }}" alt="movie-cover">
{% endif %}