templates/footer.html.twig line 1

Open in your IDE?
  1. <!-- Partners logos block starts //-->
  2. <aside class="partners-logos-wrapper">
  3.     <div class="center-block partners-logos-block">
  4.         <a href="{{ "mental-health-commission-link"|trans|raw }}" target="_blank">
  5.             <figure class="pt-4 pb-4">
  6.                 <img src="{% if app.request.locale == "en" %}{{ asset('assets/img/MHCC_brand_footer.svg') }}{% else %}{{ asset('assets/img/MHCC_brand_footer_f.svg') }}{% endif %}" class="partners-logo mhcc-logo" alt="{{ "mental-health-commission"|trans|raw }}">
  7.             </figure>
  8.         </a>
  9.         <a href="https://psychhealthandsafety.org/" target="_blank">
  10.             <figure class="pt-4 pb-4">
  11.                 <img src="{{ asset('assets/img/PH+S_brand_p_footer.svg') }}" class="partners-logo phs-logo" alt="">
  12.             </figure>
  13.         </a>
  14.         <a href="{{ "ccohs-web"|trans|raw }}" target="_blank">
  15.             <figure class="pt-4 pb-4">
  16.                 <img src="{% if app.request.locale == "en" %}{{ asset('assets/img/ccohs_brand_footer.svg') }}{% else %}{{ asset('assets/img/ccohs_brand_footer_f.svg') }}{% endif %}" class="partners-logo ccohs-logo" alt="{{ "about-ccohs-title"|trans|raw }}">
  17.             </figure>
  18.         </a>        
  19.     </div>   
  20. </aside>
  21. <!-- Partners logos block ends //-->
  22. <footer class="pt-2 pb-2 black-bg mhcc-footer-wrapper">
  23.     <div class="center-block mhcc-footer-block" style="display: flex; justify-content: space-between; flex-wrap: wrap; width: 81vw; max-width: 1992px;">
  24.         <div class="mhcc-footer-content">
  25.             <p class="white-text mhcc-copyright-text" style="font-size:1.6rem;">{{ "2018-mental-health-comm"|trans|raw }}</p>
  26.         </div>
  27.         <div class="mt-2 mhcc-footer-content">
  28.             <ul class="list-unstyled list-inline text-center mhcc-footer-content-terms">
  29.                 <li style="font-size:2rem;"><a href="{{ path('terms') }}" class="white-text">{{ "terms-conditions"|trans|raw }}</a></li>
  30.                 <li style="font-size:2rem;border-left: 1px white solid;"><a href="{{ path('contact_us') }}" class="white-text">{{ "contact-us"|trans|raw }}</a></li>
  31.             </ul>
  32.         </div>
  33.     </div>
  34. </footer>