templates/includes/ajoutez_MT.inc.html.twig line 1

Open in your IDE?
  1. {% if no_bookmark is not defined %}
  2.     {% if use_cache is defined and use_cache %}
  3.      
  4.     {% elseif mtinfos.info_rub is defined and mtinfos.info_rub %}
  5.     <section class="tc-panel tc-tablet-1_1 tc-desktop-1_1">
  6.         <div class="tc-ajout_mt tc-block" >
  7.             <div class="tc-border-index">
  8.             {% if is_bookmark is defined and is_bookmark %}
  9.             <a class="tc-neutral-color" href="/montheatre/bookmark/object/{{ mtinfos.object }}/idobject/{{ mtinfos.idobject }}?setetat=delete_bookmark&urifrom={{ mtinfos.urifrom }}">
  10.                 <span class="tc-icon-cancel">
  11.                     Retirer {{ mtinfos.info_rub }} de <span class="tc-color-red tc-icon-pictotc"> mon&nbsp;théâtre </span>
  12.                 </span>
  13.             </a>
  14.             {% else %}
  15.             <a class="tc-neutral-color" href="/montheatre/bookmark/object/{{ mtinfos.object }}/idobject/{{ mtinfos.idobject }}?setetat=add_bookmark&urifrom={{ mtinfos.urifrom }}">
  16.                 <span class="tc-icon-plus">
  17.                     Ajouter {{ mtinfos.info_rub }} à <span class="tc-color-red tc-icon-pictotc"> mon&nbsp;théâtre </span>
  18.                 </span>
  19.             </a>
  20.             {% endif %}
  21.             </div>
  22.         </div>
  23.     </section>
  24.     {% endif %}
  25. {% endif %}