templates/Frontend/footer.html.twig line 1

Open in your IDE?
  1. <br><br>
  2. <footer class="my-5 p-t-50 p-b-20" style='border-style:solid; border-width:0px;; border-top-width:2px; border-color:#efeef4;'>
  3.    <div class='container'>
  4.        <div class='row'>
  5.            <div class='col-7'>
  6.                <h4><b>{{ information.name }}</b></h4>
  7.                            <p style="margin-top:5px;">"{{information.slogan}}"</p>              
  8.                            <p style="margin-top:5px;">{{ information.aboutUs|raw }}</p>
  9.                            {% if information.address != '' %}                          
  10.                             <p style="margin-top:10px;">{{ information.address|raw }}</p>
  11.                            {% endif %}
  12.                            <p style='margin-top:10px'><i class='fa fa-phone'></i> {{information.phones}}&nbsp;&nbsp;<i class='fa fa-envelope'></i> {{information.email}}</p>
  13.                             {% if information.instagram != '' %}
  14.                                 <a href="{{information.instagram}}" target="_blank" >
  15.                                     <img  style="width:30px;height: 30px;;margin-top: 10px;margin-left:5px;cursor:pointer;" src="{{ asset('images/icon_instagram.png') }}">
  16.                                 </a> 
  17.                             {% endif %}
  18.                             {% if information.facebook %}
  19.                                 <a href="{{information.facebook}}" target="_blank"  >
  20.                                     <img style="width:30px;height: 30px;margin-top: 10px;float:left;cursor:pointer;" src="{{ asset('images/icon_facebook.png') }}">
  21.                                 </a>
  22.                             {% endif %}
  23.                    </div>
  24.            {% if webSetting and webSetting.brandMenuFeatured == '1' %}
  25.            <div class='col'>
  26.                <h4><b>Marcas</b></h4>    
  27.                <br>       
  28.                <ul>
  29.                        {% for item in brands  %}
  30.                            <li style="margin-bottom: 8px;">
  31.                             <a style="color: #4e5768;" href="{{ path('frontend_product', {'brand': item.brandId, slug:slug}) }}"> 
  32.                                 {{ item.name }}
  33.                             </a>
  34.                         </li>
  35.                        {% endfor %}                   
  36.                </ul>
  37.            </div>
  38.            {% endif %}
  39.            <div class='col'>
  40.                <h4><b>Información</b></h4>           
  41.                <br>
  42.                <ul>
  43.                    {% for item in policies  %}
  44.                            <li style="margin-bottom: 8px;">
  45.                            <a style="color: #4e5768;" href="{{ path('footer_policy', {'id': item.policyId, slug:slug}) }}"> 
  46.                                 {{ item.name }}
  47.                             </a>
  48.                         </li>
  49.                        {% endfor %}                   
  50.                </ul>
  51.                
  52.            </div>              
  53.        </div>
  54.    </div>
  55. </footer>