templates/includes/footer.html.twig line 1

Open in your IDE?
  1. <footer class="footer-main">
  2.     <div class="row m-auto w-80">
  3.         <div class="footer-col col-4 o-2">
  4.             <p class="t-center"><strong>{{ "Site navigation"|trans([], 'locale') }}</strong></p>
  5.             <nav id="main-navigation" class="menu">
  6.                 <ul>
  7.                     <li class="menu-item">
  8.                         <a href="{{ url('index') }}">
  9.                             {{ "Home page"|trans([], 'locale') }}
  10.                         </a>
  11.                     </li>
  12.                     <li class="menu-item">
  13.                         <a href="{{ url('obs_guide') }}">
  14.                             {{ "Guide for OBS"|trans([], 'locale') }}
  15.                         </a>
  16.                     </li>
  17.                 </ul>
  18.             </nav>
  19.         </div>
  20.         <div class="footer-col col-2 o-1 -t-75">
  21.             <p>
  22.                 <strong>Phasmophobia Randomizer</strong> © 2020 - 2022, all rights reserved.
  23.             </p>
  24.             <hr>
  25.             <p>
  26.                 {{ "All content coming from the game Phasmophobia and being used on the site belongs to Kinetic Game."|trans([], 'locale') }}<br>
  27.                 {{ "The conception and realization of the site and its scripts are made by RecoilZA."|trans([], 'locale') }}
  28.             </p>
  29.         </div>
  30.         <div class="footer-col col-4 o-3">
  31.             <nav id="secondary-navigation" class="menu">
  32.                 <p class="t-center"><strong>{{ "Social medias"|trans([], 'locale') }}</strong></p>
  33.                 <ul>
  34.                     <li class="menu-item">
  35.                         <a href="https://twitter.com/PhasmoRando">
  36.                             {{ "Our Twitter"|trans([], 'locale') }}
  37.                         </a>
  38.                     </li>
  39.                     <li class="menu-item">
  40.                         <a href="https://discord.gg/5ft7rEkRUP">
  41.                             {{ "Our Discord"|trans([], 'locale') }}
  42.                         </a>
  43.                     </li>
  44.                     <li class="menu-item">
  45.                         <a href="https://discord.gg/phasmophobia">
  46.                             {{ "Phasmophobia Official Discord"|trans([], 'locale') }}
  47.                         </a>
  48.                     </li>
  49.                 </ul>
  50.             </nav>
  51.         </div>
  52.     </div>
  53. </footer>