{% if is_user_advertiser(app.user) %}
{% set offer = offer() %}
{% if offer != null and app.user.offerBarHidden == null %}
<div class="offer-bar d-none" id="offer-bar">
<p class="text">{{ offer|raw }}</p>
<button class="btn" type="button" id="close_offer_bar" onclick="closeOfferBar()"><i><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" width="24" height="24">
<path fill="#fff" d="M19 6.4L17.6 5 12 10.6 6.4 5 5 6.4l5.6 5.6L5 17.6 6.4 19l5.6-5.6 5.6 5.6 1.4-1.4-5.6-5.6L19 6.4z" opacity=".4"/>
</svg></i>
</button>
</div>
<script>
function closeOfferBar() {
fetch('{{ path('account.offer_bar.hide') }}', { method: 'POST' });
}
</script>
{% endif %}
{% endif %}