templates/frontend/layout/_footer.html.twig line 1

  1. <div class="bg-brand-darkest p-4 text-brand-white">
  2.     <div class="lg:w-[1280px] mx-auto grid grid-cols-3 gap-12">
  3.         <div>
  4.             <h4 class="py-3 mb-3 border-b border-white/50"><i
  5.                         class="fa fa-map-location-dot mr-2"></i> {{ 'footer.address.title' | trans }}</h4>
  6.             <div>{{ 'footer.address.body' | trans }}</div>
  7.             <div class="mapouter my-3">
  8.                 <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2674.245481428529!2d106.85709111539693!3d47.912287409567895!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5d969304f1a232f1%3A0x4fc9b621a6757b8!2z0K3RgNC00Y3QvdGN0YIg0YHRg9Cy0YDQsNCz0LAg0YLTqdCy!5e0!3m2!1smn!2smn!4v1686227564094!5m2!1smn!2smn"
  9.                         width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy"
  10.                         referrerpolicy="no-referrer-when-downgrade"></iframe>
  11.             </div>
  12.         </div>
  13.         <div>
  14.             <h4 class="py-3 mb-3 border-b border-white/50"><i
  15.                         class="fa fa-square-phone mr-2"></i> {{ 'footer.contact.title' | trans }}</h4>
  16.             <div class="flex flex-col space-y-2">
  17.                 <div>88108071, 99117508</div>
  18.                 <div>info@mongoliansecurity.mn</div>
  19.                 <div class="text-3xl">
  20.                     <a href="https://www.facebook.com/profile.php?id=100091480856021"><i
  21.                                 class="fa-brands fa-square-facebook"></i></a>
  22.                 </div>
  23.             </div>
  24.         </div>
  25.         <div>
  26.             <h4 class="py-3 mb-3 border-b border-white/50"><i
  27.                         class="fa fa-paperclip mr-2"></i> {{ 'footer.links.title' | trans }}</h4>
  28.             <div class="flex flex-col space-y-2">
  29.                 <a href="{{ path('app_intro') }}">{{ 'menu.intro' | trans }}</a>
  30.                 <a href="{{ path('app_about') }}">{{ 'menu.about' | trans }}</a>
  31.                 <a href="{{ path('app_members') }}">{{ 'menu.members' | trans }}</a>
  32.                 <a href="{{ path('app_content', {type: 0}) }}">{{ 'menu.news' | trans }}</a>
  33.                 <a href="{{ path('app_content', {type: 1}) }}">{{ 'menu.technology' | trans }}</a>
  34.                 <a href="{{ path('app_content', {type: 2}) }}">{{ 'menu.training' | trans }}</a>
  35.             </div>
  36.         </div>
  37.     </div>
  38. </div>