templates/base/footer.html.twig line 1

Open in your IDE?
  1. <!-- Footer - Default Style 1 -->
  2. <footer id="footer" data-footer-style="1">
  3.     {% block footer %}
  4.         <div class="container">
  5.             <div class="row">
  6.                 <!-- col-sm-12 col-md-4 mb-30 -->
  7.                 <div class="col-sm-12 col-md-3 mb-30">
  8.                     <!-- Title -->
  9.                     <a href="index.html">
  10.                         <img src="{{ asset('pics/moldplus-logo-light.png') }}" alt="Moldplus SA">
  11.                     </a>
  12.                     <!-- Contact details -->
  13.                     <div class="contact-details">
  14.                         <p><br>
  15.                             Av. de la Gottaz 30, CP 22<br>
  16.                             CH-1110 Morges 2<br>
  17.                             Switzerland
  18.                         </p>
  19.                     </div>
  20.                     <!--/ .contact-details -->
  21.                 </div>
  22.                 <!--/ col-sm-12 col-md-3 mb-30 -->
  23.                 <div class="col-sm-12 col-md-5 mb-30">
  24.                     <div class="row">
  25.                         <div class="col-sm-12 col-md-6">
  26.                             <!-- Title -->
  27.                             <h3 class="title m_title">
  28.                                 PRODUCTS
  29.                             </h3>
  30.                             <div class="sbs">
  31.                                 <ul class="menu">
  32.                                     <li><a href="index.html">Design Tools</a></li>
  33.                                     <li><a href="about-us.html">5-axis Toolkit</a></li>
  34.                                     <li><a href="our-team.html">Plate Fixture Design</a></li>
  35.                                     <li><a href="faq.html">CAD Translators</a></li>
  36.                                 </ul>
  37.                             </div>
  38.                         </div>
  39.                         <!--/ col-sm-12 col-md-3 -->
  40.                         <div class="col-sm-12 col-md-6">
  41.                             <!-- Title -->
  42.                             <h3 class="title m_title">
  43.                                 SUPPORT & SERVICES
  44.                             </h3>
  45.                             <div class="sbs">
  46.                                 <ul class="menu">
  47.                                     <li><a href="index.html">Contact</a></li>
  48.                                     <li><a href="about-us.html">Downloads</a></li>
  49.                                     <li><a href="our-team.html">F.A.Q</a></li>
  50.                                     <li><a href="faq.html">Blog</a></li>
  51.                                 </ul>
  52.                             </div>
  53.                         </div>
  54.                         <!--/ col-sm-12 col-md-3 -->
  55.                     </div>
  56.                 </div>
  57.                 <div class="col-sm-12 col-md-4 mb-30">
  58.                     <div class="newsletter-signup">
  59.                         <!-- Title -->
  60.                         <h3 class="title m_title">
  61.                             NEWSLETTER SIGNUP
  62.                         </h3>
  63.                         <p>
  64.                             By subscribing to our mailing list you will always be update with the latest news from us.
  65.                         </p>
  66.                         <form action="http://YOUR_USERNAME.DATASERVER.list-manage.com/subscribe/post-json?u=YOUR_API_KEY&amp;id=LIST_ID&c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
  67.                             <input type="email" value="" name="EMAIL" class="nl-email form-control" id="mce-EMAIL" placeholder="your.address@email.com" required>
  68.                             <input type="submit" name="subscribe" class="nl-submit" id="mc-embedded-subscribe" value="JOIN US">
  69.                             <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
  70.                             <div style="position: absolute; left: -5000px;">
  71.                                 <input type="text" name="b_xxxxxxxxxxxxxxxxxxxCUSTOMxxxxxxxxx" value="">
  72.                             </div>
  73.                         </form>
  74.                         <!-- Notification container -->
  75.                         <div id="notification_container"></div>
  76.                     </div><!-- end newsletter-signup -->
  77.                 </div>
  78.             </div>
  79.             <!--/ row -->
  80.             <div class="row">
  81.                 <div class="col-sm-12">
  82.                     <div class="bottom clearfix">
  83.                         <!-- social-icons
  84.                         <ul class="social-icons sc--clean clearfix">
  85.                             <li class="title">GET SOCIAL</li>
  86.                             <li><a href="#" target="_self" class="fab fa-facebook-f" title="Facebook"></a></li>
  87.                         </ul>
  88.                          social-icons -->
  89.                         <!-- copyright -->
  90.                         <div class="copyright">
  91.                             <p>
  92.                                 ©2022 Moldplus S.A | Moldplus® is a product of Moldplus SA. | Verisurf® is a registered trademark of Verisurf Software Inc. | Mastercam® is a product of CNC Software.
  93.                             </p>
  94.                         </div>
  95.                         <!--/ copyright -->
  96.                     </div>
  97.                     <!--/ bottom -->
  98.                 </div>
  99.                 <!--/ col-sm-12 -->
  100.             </div>
  101.             <!--/ row -->
  102.         </div>
  103.         <!--/ container -->
  104.     {% endblock %}
  105. </footer>
  106. <!--/ Footer - Default Style 1 -->