templates/common/footer.html.twig line 1

Open in your IDE?
  1. {% set footerLinks = footer_links() %}
  2. <footer class="main-footer">
  3.     <div class="container">
  4.         <div class="row">
  5.             <div class="col-xs-12 col-md-3 social-networks-block">
  6.                 <ul class="social-networks-list">
  7.                     <li class="social-networks-item">
  8.                         <a href="{{ social_facebook_link }}" class="social-networks-link">
  9.                             <i class="fa fa-facebook"></i>
  10.                         </a>
  11.                     </li>
  12.                     <!-- <li class="social-networks-item">
  13.                         <a href="{{ social_twitter_link }}" class="social-networks-link">
  14.                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style="margin-bottom: -3px; fill: #bebdbd; display: inline-block; height: 16px;">
  15.                                 <path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/>
  16.                             </svg>
  17.                         </a>
  18.                     </li>
  19.                     -->
  20.                     <li class="social-networks-item">
  21.                         <a href="{{ social_instagram_link }}" class="social-networks-link">
  22.                             <i class="fa fa-instagram"></i>
  23.                         </a>
  24.                     </li>
  25.                     <li class="social-networks-item">
  26.                         <a href="{{ social_linkedin_link }}" class="social-networks-link">
  27.                             <i class="fa fa-linkedin"></i>
  28.                         </a>
  29.                     </li>
  30.                 </ul>
  31.             </div>
  32.             <div class="col-xs-12 col-md-6 marketing-links-block">
  33.                 {% for page, link in footerLinks %}
  34.                     <a href="{{ link }}" class="marketing-link">{{ ('fmt.marketing_pages.' ~ page)|trans }}</a>
  35.                 {% endfor %}
  36.             </div>
  37.             <div class="col-xs-12 col-md-3 copyright-block">
  38.                 Fund My Textbooks <i class="fa fa-copyright"></i> {{ "now"|date('Y') }}
  39.             </div>
  40.         </div>
  41.     </div>
  42. </footer>
  43. <style>
  44. .swal2-container{
  45.     zoom: 1.5;
  46. }
  47. </style>
  48. {% if tracking_params is defined %}
  49.     <img src="https://fundmytextbooks.idevaffiliate.com/sale.php?profile=187&idev_commission={{ tracking_params.idev_commission }}&&reference={{ tracking_params.reference }}&ip_address={{ tracking_params.ip }}" alt="" style="position: absolute; visibility: hidden; width: 1px; height: 1px;" />
  50. {% endif %}
  51. <!-- Google tag (gtag.js) -->
  52. <script async src="https://www.googletagmanager.com/gtag/js?id=G-WG2RWPXBTX"></script>
  53. <script>
  54.   window.dataLayer = window.dataLayer || [];
  55.   function gtag(){dataLayer.push(arguments);}
  56.   gtag('js', new Date());
  57.   gtag('config', 'G-WG2RWPXBTX');
  58. </script>
  59. <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  60. <script src="//code.jquery.com/jquery-3.7.1.js"></script>
  61. <!-- Extra JS -->
  62. <script>
  63. $(document).ready(function(){
  64.     $("#registration_student_login").attr("placeholder","Add your UC Davis email address...").on("keypress",function(){
  65.         $("#registration_student_login").attr("placeholder","Email Address")
  66.     })
  67. })
  68. </script>