src/Modules/Shortcuts/Hooks/Shortcuts/hook.html.twig line 1

Open in your IDE?
  1. {% if shortcuts is not empty %}
  2.     <section class="hook_shortcuts">
  3.         {% for key, shortcut in shortcuts %}
  4.             <div class="hook_shortcuts_shortcut">
  5.                 <span class="key">0{{ key+1 }}</span>
  6.                 <a href="{{ shortcut.link }}">
  7.                     <h2 {% if shortcut.color is not null %}style="color:{{ shortcut.color }};"{% endif %}>{{ shortcut.name }}</h2>
  8.                     {% if shortcut.color is not null %}
  9.                         {% set color=shortcut.color %}
  10.                     {% endif %}
  11.                     {% include "templates/includes/svg/arrow.include.html.twig" %}
  12.                 </a>
  13.             </div>
  14.         {% endfor %}
  15.     </section>
  16. {% else %}
  17.     <div class="alert alert-warning">Aucun résultat n'a pu être récupéré</div>
  18. {% endif %}