templates/website/forum/forum-list-answers.html.twig line 1

Open in your IDE?
  1. {% set dataState = {totalItems: totalItems, offset: offset, itemsLoadNumber: itemsLoadNumber}|json_encode %}
  2. {# INICIAL DA PÁGINA #}
  3. {% if init is defined and init %}
  4.     <input id="answers-fetch" class="answers-fetch" type="hidden" value="{{ dataState }}">
  5. {# SCROLL LOAD #}
  6. {% else %}
  7.     {{ dataState|raw }}##
  8. {% endif %}
  9. {% if answers is not empty %}
  10.     {% for answer in answers %}
  11.         {% include 'website/forum/forum-detail-box.html.twig' with { forumItem: answer, layout: 'answer' } %}
  12.         {# MODAL -- OHTERS LIKES #}
  13.         {#{% embed "website/includes/modal.html.twig" with {'id': 'modalOthersLikesAnswer', 'title': getLanguage('all_likes', 'forum'), 'classes': 'modal-forum' } %}
  14.             {% block content %}
  15.                 {% include 'website/includes/modal-others-likes.html.twig' with { forumItem: answer, layout: 'answer' } %}
  16.             {% endblock %}
  17.         {% endembed %}#}
  18.     {% endfor %}
  19. {% endif %}