templates/application/whileresume/website/components/elements/blocked.html.twig line 1

Open in your IDE?
  1. {% if app.user is null %}
  2. <div class="nav-wrap bg-white bg-transparent-card rounded-xxl shadow-xss pt-3 pb-1 mb-2 mt-2">
  3.     <div class="nav-caption fw-600 font-xssss text-grey-500"><span></span>{{ 'sidebar.connected'|trans({}, 'whr-public') }}</div>
  4.     <ul class="mb-1 top-content">
  5.         <li class="logo d-none d-xl-block d-lg-block"></li>
  6.         <li>
  7.             <a href="{% if app.request.locale == "fr"  %}{{ path('locale_cv_public_entry', {'_locale': app.request.locale}) }}{% else %}{{ path('cv_public_entry') }}{% endif %}" class="nav-content-bttn open-font">
  8.                 <i class="font-xl text-current feather-plus-circle me-3"></i>
  9.                 <span>{{ 'sidebar.moncv'|trans({}, 'whr-public') }}</span>
  10.             </a>
  11.         </li>
  12.         <li>
  13.             <a class="nav-content-bttn open-font">
  14.                 <i class="font-xl text-current feather-lock me-3" style="color:grey !important;"></i>
  15.                 <span>{{ 'sidebar.moncv_analyse'|trans({}, 'whr-public') }}</span>
  16.             </a>
  17.         </li>
  18.         <li>
  19.             <a class="nav-content-bttn open-font">
  20.                 <i class="font-xl text-current feather-lock me-3" style="color:grey !important;"></i>
  21.                 <span>{{ 'sidebar.moncv_generated'|trans({}, 'whr-public') }}</span>
  22.             </a>
  23.         </li>
  24.         <li>
  25.             <a class="nav-content-bttn open-font">
  26.                 <i class="font-xl text-current feather-lock me-3" style="color:grey !important;"></i>
  27.                 <span>{{ 'sidebar.moncv_original'|trans({}, 'whr-public') }}</span>
  28.             </a>
  29.         </li>
  30.     </ul>
  31. </div>
  32. {% endif %}