templates/website/includes/fix-notifications.html.twig line 1

Open in your IDE?
  1. {% from 'utils.html.twig' import ico %}
  2. {% if user %}
  3.     <div class="top">
  4.         <header>
  5.             <h3>{{ getLanguage('notifications_lowcase', 'notifications') }}</h3>
  6.             <a class="js--notif-ler-todas">{{ getLanguage('mark_all_as_read', 'notifications') }}</a>
  7.         </header>
  8.         {# BUSCA #}
  9.         <div class="search">
  10.             <form class="notifications-search-form">
  11.                 <input class="notifications-search" name="notifications-search" placeholder="{{ getLanguage('search_notifications', 'notifications') }}&thinsp;&hellip;">
  12.                 <button type="submit">{{ ico('search') }}</button>
  13.             </form>
  14.         </div>
  15.     </div>
  16.     <div class="scroll">
  17.         <div class="box" data-status="">
  18.             <section class="items-novas">
  19.                 <h3 class="sec-tit sec-tit-novas">{{ getLanguage('new', 'notifications') }}</h3>
  20.                 <div class="items">
  21.                 </div>
  22.             </section>
  23.             <section class="items-anteriores">
  24.                 <h3 class="sec-tit sec-tit-anteriores">{{ getLanguage('previous', 'notifications') }}</h3>
  25.                 <div class="items">
  26.                 </div>
  27.             </section>
  28.             <section class="sem-items">
  29.                 <div class="items">
  30.                 </div>
  31.             </section>
  32.         </div>
  33.     </div>
  34.     <div class="pagination-loader">
  35.         <i class="loader">{{ ico('loader-wish') }}</i>
  36.     </div>
  37. {% endif %}