app/Resources/views/mobile/footer-tool-bar.html.twig line 1

Open in your IDE?
  1. {% set mobile = is_show_mobile_page() %}
  2. {% if mobile %}
  3. <div class="footer-tool-bar">
  4.   <div class="{% if mobile_tool_bar == 'index' %}active{% endif %}">
  5.     <a href="{{ path('homepage') }}">
  6.       <i class="es-icon es-icon-home1"></i><br>
  7.       {{ 'homepage'|trans }}
  8.     </a>
  9.   </div>
  10.   <div class="{% if mobile_tool_bar == 'course' %}active{% endif %}">
  11.     <a href="{{ path('course_set_explore') }}">
  12.       <i class="es-icon es-icon-newshot"></i><br>
  13.       {{ 'course'|trans }}
  14.     </a>
  15.   </div>
  16.   <div class="{% if mobile_tool_bar == 'learning' %}active{% endif %}">
  17.     <a href="{{ path('my_courses_learning') }}">
  18.       <i class="es-icon es-icon-write"></i><br>
  19.       {{ 'homepage.footer.learning'|trans }}
  20.     </a>
  21.   </div>
  22. </div>
  23. {% endif %}