{% from 'utils.html.twig' import ico %}
{% if user %}
<div class="top">
<header>
<h3>{{ getLanguage('notifications_lowcase', 'notifications') }}</h3>
<a class="js--notif-ler-todas">{{ getLanguage('mark_all_as_read', 'notifications') }}</a>
</header>
{# BUSCA #}
<div class="search">
<form class="notifications-search-form">
<input class="notifications-search" name="notifications-search" placeholder="{{ getLanguage('search_notifications', 'notifications') }} …">
<button type="submit">{{ ico('search') }}</button>
</form>
</div>
</div>
<div class="scroll">
<div class="box" data-status="">
<section class="items-novas">
<h3 class="sec-tit sec-tit-novas">{{ getLanguage('new', 'notifications') }}</h3>
<div class="items">
</div>
</section>
<section class="items-anteriores">
<h3 class="sec-tit sec-tit-anteriores">{{ getLanguage('previous', 'notifications') }}</h3>
<div class="items">
</div>
</section>
<section class="sem-items">
<div class="items">
</div>
</section>
</div>
</div>
<div class="pagination-loader">
<i class="loader">{{ ico('loader-wish') }}</i>
</div>
{% endif %}