src/CorporateTrainingBundle/Resources/views/default/footer.html.twig line 1

Open in your IDE?
  1. {% if app.request.headers.get('WEB-VIEW-ACCESS') == null %}
  2. {% set currentTheme = current_theme() %}
  3. {% set themeConfig = isEditColor|default(false) ? currentTheme.config : currentTheme.confirmConfig %}
  4. {% for config in themeConfig.blocks.left|default([]) %}
  5.     {% set code = config.code %}
  6.     {% if code == 'footer-link' %}
  7.         {% set category = config.categoryId|default(0) ? data('Category', {categoryId: config.categoryId})  : null %}
  8.         {% include 'default/' ~ code ~ '.html.twig' with {config:config, category: category} %}
  9.     {% endif %}
  10. {% endfor %}
  11. <footer class="es-footer hidden-xs">
  12.     <div class="copyright">
  13.         <div class="container">
  14.             {% include "powered-by.html.twig" %}
  15.             {{ setting('site.analytics')|raw }}
  16.             {{ setting('site.icpHtml')|raw }}
  17.             <div class="mts">
  18.                 {% if setting('site.copyright') %}
  19.           {{ 'homepage.footer.course_copyright'|trans({'%copyRightUrl%':setting('site.copyright')})|raw }}
  20.                 {% endif %}
  21.                 {% if setting('site.icp') %}
  22.                     <a class="mlm" href="http://beian.miit.gov.cn/" target="_blank">
  23.                         {{ setting('site.icp') }}
  24.                     </a>
  25.                 {% endif %}
  26.             </div>
  27.         </div>
  28.     </div>
  29. </footer>
  30. {% if app.request.get('_route') != 'knowledge_base_entrance' and app.user.id|default(0) > 0 %}
  31. <footer class="visible-xs">
  32.   <div class="m-footer-tabs" style="z-index: 99999">
  33.   {% if app.request.get('_route') == 'homepage' %}
  34.    <a href="{{path('homepage')}}" class="m-footer-tabs__item active">
  35.       <div class="m-footer-tabs__icon">
  36.         <i class="es-icon es-icon-a-Frame427319691"></i>
  37.       </div>
  38.       <div class="m-footer-tabs__title">{{ 'admin.default.work_arrangement.found'|trans }}</div>
  39.     </a>
  40.   {% else %}
  41.     <a href="{{path('homepage')}}" class="m-footer-tabs__item">
  42.       <div class="m-footer-tabs__icon">
  43.         <i class="es-icon es-icon-a-Frame427319691-1"></i>
  44.       </div>
  45.       <div class="m-footer-tabs__title">{{ 'admin.default.work_arrangement.found'|trans }}</div>
  46.     </a>
  47.   {% endif %}
  48.   {% if app.request.get('_route') == 'study_center_my' %}
  49.     <a href="{{path('study_center_my')}}" class="m-footer-tabs__item active">
  50.       <div class="m-footer-tabs__icon">
  51.         <i class="es-icon es-icon-yuantubiao06"></i>
  52.       </div>
  53.       <div class="m-footer-tabs__title">{{ 'homepage.header.learn'|trans }}</div>
  54.     </a>
  55.   {% else %}
  56.     <a href="{{path('study_center_my')}}" class="m-footer-tabs__item">
  57.       <div class="m-footer-tabs__icon">
  58.         <i class="es-icon es-icon-yuantubiao06-1"></i>
  59.       </div>
  60.       <div class="m-footer-tabs__title">{{ 'homepage.header.learn'|trans }}</div>
  61.     </a>
  62.   {% endif %}
  63.   {% if app.request.get('_route') == 'my_center' %}
  64.     <a href="{{path('my_center')}}" class="m-footer-tabs__item active">
  65.       <div class="m-footer-tabs__icon">
  66.         <i class="es-icon es-icon-yuantubiao01"></i>
  67.       
  68.       </div>
  69.       <div class="m-footer-tabs__title"> {{ 'admin.default.work_arrangement.my'|trans }}</div>
  70.     </a>
  71.   {% else %}
  72.   <a href="{{path('my_center')}}" class="m-footer-tabs__item">
  73.       <div class="m-footer-tabs__icon">
  74.         <i class="es-icon es-icon-yuantubiao02"></i>
  75.       </div>
  76.       <div class="m-footer-tabs__title"> {{ 'admin.default.work_arrangement.my'|trans }}</div>
  77.     </a>
  78.   {% endif %}
  79.   </div>
  80.   <div class="m-footer-safe-area"></div>
  81. </footer>
  82. {% endif %}
  83. {% endif %}