src/views/layout/_footer.twig line 1

Open in your IDE?
  1. <footer class="footer">
  2.     <div class="wrapper--footer">
  3.         <div class="container-fluid">
  4.             <div class="row text-white">
  5.                 <div class="col-xl-4 col-lg-4 col-md-4 col-sm-12">
  6.                     <a class="" href="https://www.populationfoundation.in/">
  7.                         <img class="" src="/images/PFIYLogo.png" alt="PFI" style="height: 50px;">
  8.                     </a>
  9.                     <p class="mb-0"><strong>{{ 'footer.pfi'|trans }}</strong></p>
  10. {#<small>
  11.                         <a style="color: #dddddd;" href="mailto:[email protected]" target="_blank">{{ 'footer.email'|trans }}</a>
  12.                     </small>#}
  13.                     <div class="display_flx my-3">
  14.                         <div style="border-bottom: 2px solid #fcaf17;padding-bottom: 5px;">
  15.                             <a href="tel:+911143894100" style="color: #ffffff;">{{ 'footer.phone'|trans }}</a>
  16.                         </div>
  17.                         <div style="border-bottom: 2px solid #fcaf17;padding-bottom: 5px;">
  18.                             {{ 'footer.address.l1'|trans }}<br />{{ 'footer.address.l2'|trans }}
  19.                         </div>
  20.                     </div>
  21.                 </div>
  22.                 <div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 px-4">
  23.                     <h3 class="fnav--heading">{{ 'issues_and_themes'|trans }}</h3>
  24.         <ul class="fnavul p-0">
  25.           {% for bucket in data['buckets'] %}
  26.             <li class="fnavul--li">
  27.               <a class="fnavul--li-a" href="{{ path('web_bucket', { id: bucket.id }) }}">{{ bucket.title|striptags|raw }}</a>
  28.             </li>
  29.           {% endfor %}
  30.         </ul>
  31.                 </div>
  32.                 <div class="col-xl-2 col-lg-2 col-md-2 col-sm-12">
  33.                     <h3 class="fnav--heading">{{ 'navbar.menu'|trans }}</h3>
  34.                     <ul class="foot_nav">
  35.                         <li>
  36.                             <a href="{{ path('web_introduction') }}">{{ 'introduction'|trans }}</a>
  37.                            
  38.                         </li>
  39.                         <li>
  40.                             <a href="{{ path('web_updates') }}">{{ 'updates'|trans }}</a>
  41.                         </li>
  42.                         <li>
  43.                             <a href="dashboard/IN">{{ 'state_dashboard'|trans }}</a>
  44.                         </li>
  45.                         <li>
  46.                             <a href="{{ path('web_district') }}">{{ 'district_dashboard'|trans }}</a>
  47.                         </li>
  48.                         <li>
  49.                             <a href="{{ path('web_contact') }}">{{ 'contact_us'|trans }}</a>
  50.                         </li>
  51.                     </ul>
  52.                 </div>
  53.             </div>
  54.         </div>
  55.       
  56.       <hr class="hr--divider" />
  57.     </div>
  58.     <div class="wrapper--footer">
  59.       <div class="fnav">
  60.        
  61.         <div class="cell">
  62.           <h3 class="fnav--heading">{{ 'footer.connect_with_us'|trans }}</h3>
  63.           <div class="social">
  64.             <a class="social--a" href="https://www.facebook.com/PopFoundIndia/" target="_blank"><img src="{{ asset('images/fb.png') }}" alt="facebook" /></a>
  65.             <a class="social--a" href="https://twitter.com/PopFoundIndia" target="_blank"><img src="{{ asset('images/twitter.png') }}" alt="twitter" /></a>
  66.             <a class="social--a" href="https://www.youtube.com/channel/UC_exH-FLrQAF67552wq6T_A" target="_blank"><img src="{{ asset('images/ytube.png') }}" alt="youtube" /></a>
  67.             <a class="social--a" href="https://www.linkedin.com/company/popfoundindia/" target="_blank"><img src="{{ asset('images/linkedin.png') }}" alt="linkedin" /></a>
  68.             <a class="social--a" href="https://www.instagram.com/populationfoundationindia/" target="_blank"><img src="{{ asset('images/instagram.png') }}" alt="instagram" /></a>
  69.           </div>
  70.         </div>
  71.         <div class="cell cell--alignitems-end">
  72.           
  73.         </div>
  74.       </div>
  75.     </div>
  76.     <div class="wrapper--footer">
  77.       <p class="copyright">&copy; {{ 'footer.copyright'|trans }}</p>
  78.     </div>
  79.   </footer>
  80.