templates/themes/theme/common/site-footer.html.twig line 25

Open in your IDE?
  1. <!-- FOOTER -->
  2. <footer class="site-footer">
  3. <div class="site-footer__social-links">
  4. <div class="site-footer__social">
  5. <a class="site-footer__logo" href="/">
  6. <img
  7. src="{{ asset('build/images/logo-mark-light.svg') }}"
  8. alt="Taurus HR logo mark"
  9. width="87"
  10. height="55"
  11. loading="lazy"
  12. >
  13. <img
  14. src="{{ asset('build/images/logo-text-light.svg') }}"
  15. alt="Taurus HR logo text"
  16. width="165"
  17. height="48"
  18. loading="lazy"
  19. >
  20. </a>
  21. <twig:SocialLinks size="lg" />
  22. </div>
  23. <div class="site-footer__links">
  24. <div class="site-footer__link-list">
  25. {{ render(controller('App\\Controller\\MenuDefaultController::fetchMenu', { 'identifier':'Footer - Primary', 'currentUrl': app.request.pathinfo })) }}
  26. </div>
  27. <div class="site-footer__link-list">
  28. <h3>Knowledge Base</h3>
  29. {{ render(controller('App\\Controller\\MenuDefaultController::fetchMenu', { 'identifier':'Footer - Knowledge Base', 'currentUrl': app.request.pathinfo })) }}
  30. </div>
  31. <div class="site-footer__link-list">
  32. <h3>Areas We Cover</h3>
  33. {{ render(controller('App\\Controller\\MenuDefaultController::fetchMenu', { 'identifier':'Footer - Areas', 'currentUrl': app.request.pathinfo })) }}
  34. </div>
  35. </div>
  36. </div>
  37. <div class="site-footer__contact-legal">
  38. <div class="site-footer__contact-creds">
  39. <div class="site-footer__contact">
  40. {% include '@theme/common/contact-items.html.twig' %}
  41. </div>
  42. <div class="site-footer__creds">
  43. <img
  44. src="{{ asset('build/images/cipd.svg') }}"
  45. alt="CIPD logo"
  46. height="40"
  47. loading="lazy"
  48. >
  49. <img
  50. src="{{ asset('build/images/brcc.svg') }}"
  51. alt="BRCC logo"
  52. height="60"
  53. loading="lazy"
  54. >
  55. </div>
  56. </div>
  57. <div class="site-footer__legal">
  58. <div class="site-footer__tlb">
  59. <i class="fa-solid fa-egg"></i>
  60. hatched by TLB Studio Ltd.
  61. </div>
  62. <div class="site-footer__legal-links">
  63. <div>
  64. {{ render(controller('App\\Controller\\MenuDefaultController::fetchMenu', { 'identifier':'Footer - Compliance', 'currentUrl': app.request.pathinfo })) }}
  65. </div>
  66. <div class="lg:text-right leading-loose">
  67. Taurus HR Solutions Ltd are authorised and regulated by the Financial Conduct Authority. Regulation number: 1037675<br/>
  68. Taurus HR Solutions Ltd, registered in England, company registration
  69. number: 14366407
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. <div class="site-footer__bull">
  75. <img
  76. src="{{ asset('build/images/footer-bull.svg') }}"
  77. alt="Taurus HR Bull"
  78. height="80"
  79. width="124"
  80. loading="lazy"
  81. >
  82. </div>
  83. </footer>