templates/home/products_page/title.html.twig line 1

Open in your IDE?
  1. {% for cms_copy in cms_copy_array %}
  2.     {% if cms_copy.ranking == 1 %}
  3.         <div class="row">
  4.             <div class="col-9">
  5.                 <h4>
  6.                     {% if cms_copy.hyperlinks is empty %}
  7.                         {{ attribute(cms_copy,'contentTitle'~Languages.getSelectedLanguageCode)|raw }}
  8.                     {% else %}
  9.                         <a target="_blank" href="{{ cms_copy.hyperlinks }}">
  10.                             {{ attribute(cms_copy,'contentTitle'~Languages.getSelectedLanguageCode)|raw }}
  11.                         </a>
  12.                     {% endif %}
  13.                 </h4>
  14.                 {% if is_granted('ROLE_ADMIN') %}
  15.                     <a target="_blank" href="{{ path('cms_copy_edit', {'id': cms_copy.id}) }}">
  16.                         <i style="color: red" class="fa fa-pen"></i>
  17.                     </a>
  18.                 {% endif %}
  19.             </div>
  20.             <div class="col-3">
  21.                 {% if is_granted('ROLE_ADMIN') %}
  22.                     User: {{ cms_copy.pageCountUsers }}; Admin: {{ cms_copy.pageCountAdmin }}
  23.                 {% endif %}
  24.             </div>
  25.         </div>
  26.     {% endif %}
  27. {% endfor %}