templates/includes/common/default-footer.html.twig line 1

Open in your IDE?
  1. <footer id="is-Footer" role="contentinfo">
  2. {% if (sim_module is not defined or sim_module is same as(false)) and (filigree and session.subNetwork.code is defined) %}
  3. <div class="is-SubNetwork-Filigree">{{ session.subNetwork.code }}</div>
  4. {% endif %}
  5. {% if (sim_module is not defined or sim_module is same as(false)) and (ticketing_enriched_footer_nav) %}
  6. <div id="is-Footer-Top">
  7. <div id="is-Footer-Top-C1">
  8. {% if portal_url and items is defined and items is not empty %}
  9. {% include 'includes/common/default-nav-portal-on.html.twig' %}
  10. {% else %}
  11. <div class="is-row">
  12. {% include 'includes/common/default-nav-portal-off.html.twig' %}
  13. </div>
  14. {% endif %}
  15. </div>
  16. </div>
  17. {% endif %}
  18. <div id="is-Footer-Bottom">
  19. <div id="is-Footer-Bottom-C1">
  20. {% include "includes/sim/default-footer.html.twig" %}
  21. </div>
  22. <p id="is-Copyright">{{ ('now'|date('Y') ~ ' &copy; ' ~ app_name ~ ' ' ~ 'copyright'|trans)|raw }}</p>
  23. </div>
  24. {% if sim_module is not defined or sim_module is same as(false) %}
  25. <div class="is-Footer-Version">
  26. <p>Version: {{ app_version() }}</p>
  27. </div>
  28. {% endif %}
  29. </footer>