templates/frontend/components/footer.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'store' %}
  2. <!-- START OF FOOTER -->
  3. <footer class="footer">
  4.     <div class="container">
  5.         <!-- START SECTION VISIBLE FROM TABLET TO FULL HD -->
  6.         <div class="columns is-multiline is-hidden-mobile is-centered">
  7.             <div class="column column-first is-one-fifth-desktop is-two-fifths-tablet">
  8.                 <div class="title is-5 is-bold">{{ 'contact_with_us'|trans }}</div>
  9.                 <div class="level" style="margin-top:-10px;">
  10.                     <div class="level-left">
  11.                         <div class="level-item">
  12.                             <p class="is-size-7">
  13.                                 {% if helplineHours[0] is defined and helplineHours[0] %}
  14.                                     <strong>{{ helplineHours[0].shortName|capitalize }};</strong>
  15.                                 {% endif %}
  16.                                 {% if helplineHours[4] is defined and helplineHours[4] %}
  17.                                     <strong>{{ helplineHours[4].shortName|capitalize }}</strong>
  18.                                 {% endif %}
  19.                                 <br/>
  20.                                 {% if helplineHours[0] is defined and helplineHours[0] %}
  21.                                     {{ helplineHours[0].name }}
  22.                                 {% endif %}
  23.                             </p>
  24.                         </div>
  25.                     </div>
  26.                     <div class="level-right">
  27.                         <div class="level-item">
  28.                             <p class="is-size-7">
  29.                                 {% if helplineHours[1] is defined and helplineHours[1] %}
  30.                                     <strong>{{ helplineHours[1].shortName|capitalize }};</strong>
  31.                                 {% endif %}
  32.                                 {% if helplineHours[2] is defined and helplineHours[2] %}
  33.                                     <strong>{{ helplineHours[2].shortName|capitalize }};</strong>
  34.                                 {% endif %}
  35.                                 {% if helplineHours[3] is defined and helplineHours[3] %}
  36.                                     <strong>{{ helplineHours[3].shortName|capitalize }};</strong>
  37.                                 {% endif %}
  38.                                 <br>
  39.                                 {% if helplineHours[2] is defined and helplineHours[2] %}
  40.                                     {{ helplineHours[2].name }}
  41.                                 {% endif %}
  42.                             </p>
  43.                         </div>
  44.                     </div>
  45.                 </div>
  46.                 {% if language.helpline %}
  47.                     <span class="is-size-7"><i class="fas fa-phone"></i> {{ language.helpline }}</span>
  48.                 {% endif %}
  49.                 {% if language.phone %}
  50.                     <br>
  51.                     <span class="is-size-7"><i class="fas fa-phone"></i> {{ language.phone }}</span>
  52.                 {% endif %}
  53.                 <br>
  54.                 <span class="is-size-7"> @ <a class="has-text-danger" style="text-decoration: underline" href="mailto:{{ language.email }}">{{ 'send_email'|trans }}</a></span>
  55.                 <br>
  56.                 <br>
  57.                 {% if app.request.locale != 'pl' %}
  58.                     <div class="title is-5 is-bold">{{ 'our_address'|trans }}</div>
  59.                     <div class="media">
  60.                         <div class="media-left">
  61.                             {% set url = 'https://www.google.com/maps/place/Dru%C5%BEstevn%C3%AD+294,+Star%C3%A9+M%C4%9Bsto,+739+61+T%C5%99inec/@49.6845901,18.6674223,17z/data=!3m1!4b1!4m5!3m4!1s0x4714053e0290ffc1:0x40e8e6967e9970e6!8m2!3d49.6845866!4d18.669611?hl=cs' %}
  62.                             {% if app.request.locale == 'pl' %}
  63.                                 {% set url = 'https://www.google.com/maps/place/CentrumKrzesel.pl/@52.305145,21.05143,15z/data=!4m2!3m1!1s0x0:0x61ca6fce95035d9e?sa=X&ved=2ahUKEwj4r6iKydnhAhVjkIsKHWU2AKoQ_BIwGXoECAYQCA' %}
  64.                             {% endif %}
  65.                             <span><a target="_blank" href="{{ url }}"><i class="fas fa-map-marker-alt has-text-danger"></i></a></span>
  66.                         </div>
  67.                         <div class="media-content" style="margin-top:-2px;">
  68.                             <span class="is-size-7" style="font-weight: 500">{{ language.shopName }}</span>
  69.                             <div class="is-size-7" style="margin-top:-15px;">
  70.                                 {{ language.address|raw }}
  71.                             </div>
  72.                         </div>
  73.                     </div>
  74.                 {% endif %}
  75.             </div>
  76.             <div class="column column-first is-two-fifths-desktop is-three-fifths-tablet">
  77.                 <div class="title is-5 is-bold" style="margin-bottom: 20px;">
  78.                     <a href="{{ path('news_store') }}" class="" style="margin-left:0px!important;">
  79.                             {{ 'news'|trans }} <i class="fa fa-link"></i>
  80.                     </a>
  81.                 </div>
  82.                 {% for row in news|slice(0,4) %}
  83.                     <!-- START OF MEDIA OBJECT -->
  84.                     <article class="media">
  85.                         <div class="media-left">
  86.                             <i class="far fa-file has-text-danger"></i>
  87.                         </div>
  88.                         <div class="media-content">
  89.                             <div class="content" style="margin-top:-4px;">
  90.                                 <a href="{{ path('single_news', {'id':row.id, 'slug':row.slug}) }}">
  91.                                     <span class="is-size-7" style="font-weight: 800">{{ row.title }}</span>
  92.                                 </a>
  93.                                 <br>
  94.                                 <small class="is-size-7" style="font-weight:100;">{{ row.createdAt|date('Y-m-d') }}</small>
  95.                                 <br>
  96.                                 <p class="is-size-7">{{ row.content|striptags|slice(0,90) }}...</p>
  97.                             </div>
  98.                         </div>
  99.                     </article>
  100.                     <!-- END OF MEDIA OBJECT -->
  101.                 {% endfor %}
  102.             </div>
  103.             <div class="column is-two-fifths-desktop is-three-fifths-tablet spacer-footer spacer-footer-disable-desktop">
  104.                 <div class="title is-5 is-bold">{{ 'on_the_blog'|trans }}</div>
  105.                 <div class="columns is-multiline">
  106.                     {% for entry in blogs|slice(0,3) %}
  107.                         <div class="column is-one-third">
  108.                             <div class="content">
  109.                                 <article class="media">
  110.                                     <div class="media-left"><i class="far fa-file has-text-danger"></i></div>
  111.                                     <div class="media-content">
  112.                                         <div class="content" style="margin-top:-3px;">
  113.                                             <a href="{{ path('blog_entry', {'id':entry.id, 'slug':entry.slug}) }}">
  114.                                                 <span class="is-size-7" style="font-weight: 800">{{ entry.title }}</span></a> <br>
  115.                                             <small class="is-size-7" style="font-weight: 100">{{ entry.createdAt|date('Y-m-d') }}</small>
  116.                                             <br>
  117.                                             <p class="is-size-7">{{ entry.content|striptags|slice(0,100)|raw }}...</p></div>
  118.                                     </div>
  119.                                 </article>
  120.                             </div>
  121.                         </div>
  122.                     {% endfor %}
  123.                 </div>
  124.                 {% if getCurrentUrl() == '/' %}
  125.                     <div id="js_cat-desc-content" class="hide-tablet">
  126.                         <div class="cat-desc-excerpt ellipsis">
  127.                             <div class="title is-5 is-bold">{{ 'about_us'|trans }}</div>
  128.                             <p class="is-size-7">
  129.                                 {{ 'footer_seo_text_1'|trans|raw }}
  130.                             </p>
  131.                         </div>
  132.                         <a class="dotted-link read-more" style="margin-top:-10px; float:left; font-size:13px; text-decoration: underline; font-weight:500" data-target="js_cat-desc-content" role="button">{{ 'read_more'|trans }}...</a>
  133.                     </div>
  134.                 {% endif %}
  135.             </div>
  136.             <div class="column is-one-fifth spacer-footer">
  137.                 <div class="title is-5 is-bold">{{ 'footer_links'|trans }}</div>
  138.                 <div class="columns is-multiline">
  139.                     <div class="column">
  140.                         <div class="content">
  141.                             <ul class="is-size-7 footer-list footer-list-mobile">
  142.                                 {% for article in articles %}
  143.                                     {% if article.footer %}
  144.                                         <li>
  145.                                             <a href="{{ path('single_article', {'id':article.id, 'slug':article.slug}) }}">
  146.                                                 {{ article.title }}
  147.                                             </a>
  148.                                         </li>
  149.                                     {% endif %}
  150.                                 {% endfor %}
  151.                                 <li>
  152.                                     <a href="{{ path('product_return_generator') }}">{{ 'product_return_form'|trans }}</a>
  153.                                 </li>
  154.                                 <li>
  155.                                     <a href="{{ path('product_complaint_generator') }}">{{ 'product_complaint_form'|trans }}</a>
  156.                                 </li>
  157.                                 <li>
  158.                                     <a href="{{ path('blog') }}">{{ 'blog'|trans }}</a>
  159.                                 </li>
  160.                                 <li>
  161.                                     <a href="{{ path('contact') }}">{{ 'contact'|trans }}</a>
  162.                                 </li>
  163.                                 {% if app.user is defined and app.user and app.user.id %}
  164.                                     <li>
  165.                                         <a href="{{ path('fos_user_security_logout') }}">
  166.                                             {{ 'logout'|trans }}
  167.                                         </a>
  168.                                     </li>
  169.                                 {% else %}
  170.                                     <li>
  171.                                         <a href="{{ path('fos_user_security_login_extension') }}">
  172.                                             {{ 'login'|trans }}
  173.                                         </a>
  174.                                     </li>
  175.                                 {% endif %}
  176.                             </ul>
  177.                             {% if app.request.locale == 'ro' %}
  178.                                 <img src="/images/ro/visa_master_new.png" style="width:160px; margin-left:20px;">
  179.                             {% endif %}
  180.                         </div>
  181.                     </div>
  182.                 </div>
  183.             </div>
  184.             <div class="column is-three-fifths is-hidden-touch spacer-footer column-first">
  185.                 <div class="title is-5 is-bold">{{ 'shortcut'|trans }}</div>
  186.                 <div class="columns is-multiline">
  187.                     <div class="column is-one-third">
  188.                         <div class="content">
  189.                             <ul class="is-size-7 footer-list">
  190.                                 {% for category in shortcutCategories|slice(0,6) %}
  191.                                     <li>
  192.                                         <a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
  193.                                             {{ category.name }}
  194.                                         </a>
  195.                                     </li>
  196.                                 {% endfor %}
  197.                             </ul>
  198.                         </div>
  199.                     </div>
  200.                     <div class="column is-one-third">
  201.                         <div class="content">
  202.                             <ul class="is-size-7 footer-list">
  203.                                 {% for category in shortcutCategories|slice(6,7) %}
  204.                                     <li>
  205.                                         <a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
  206.                                             {{ category.name }}
  207.                                         </a>
  208.                                     </li>
  209.                                 {% endfor %}
  210.                             </ul>
  211.                         </div>
  212.                     </div>
  213.                     <div class="column is-one-third">
  214.                         <div class="content">
  215.                             <ul class="is-size-7 footer-list">
  216.                                 {% for category in shortcutCategories|slice(13,6) %}
  217.                                     <li>
  218.                                         <a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
  219.                                             {{ category.name }}
  220.                                         </a>
  221.                                     </li>
  222.                                 {% endfor %}
  223.                             </ul>
  224.                         </div>
  225.                     </div>
  226.                 </div>
  227.             </div>
  228.             {% if language.facebook or language.youtube %}
  229.                 <div class="column is-one-fifth spacer-footer">
  230.                     <div class="title is-5 is-bold">Social media</div>
  231.                     <div class="level is-mobile has-text-grey-light">
  232.                         {% if language.youtube %}
  233.                             <div class="level-left">
  234.                                 <div class="level-item">
  235.                                     <a target="_blank" href="{{ language.youtube }}">
  236.                                         <span class="icon"><i class="fab fa-youtube"></i></span>
  237.                                     </a>
  238.                                 </div>
  239.                             </div>
  240.                         {% endif %}
  241.                         {% if language.facebook %}
  242.                             <div class="level-item" style="margin-left:30px;">
  243.                                 <div class="level-item">
  244.                                     <a target="_blank" href="{{ language.facebook }}">
  245.                                         <span class="icon"><i class="fab fa-facebook-f"></i></span>
  246.                                     </a>
  247.                                 </div>
  248.                             </div>
  249.                         {% endif %}
  250.                         {% if language.instagram %}
  251.                             <div class="level-item">
  252.                                 <div class="level-item">
  253.                                     <a target="_blank" href="{{ language.instagram }}">
  254.                                         <span class="icon"><i class="fab fa-instagram"></i></span>
  255.                                     </a>
  256.                                 </div>
  257.                             </div>
  258.                         {% endif %}
  259.                     </div>
  260.                     <div style="clear:both;">
  261.                         <div style="margin-top:30px;">
  262.                             <div style="font-weight: 500; font-size:13px;">
  263.                                 {% if app.request.locale == 'cz' or app.request.locale == 'sk' or app.request.locale == 'ro' %}
  264.                                     <a target="_blank" href="https://www.centrumkrzesel.pl/">
  265.                                         <img src="/graph/pl.png" style="width:22px;"> &nbsp; CentrumKrzesel.pl
  266.                                     </a>
  267.                                 {% endif %}
  268.                                 {% if app.request.locale == 'ro' or app.request.locale == 'sk' or app.request.locale == 'pl' %}
  269.                                     <br/>
  270.                                     <a target="_blank" href="https://www.ezidle.cz/">
  271.                                         <img src="/graph/cz.png" style="width:22px;"> &nbsp; eZidle.cz
  272.                                     </a>
  273.                                 {% endif %}
  274.                                 {% if app.request.locale == 'ro' or app.request.locale == 'cz' or app.request.locale == 'pl' %}
  275.                                     <br/>
  276.                                     <a target="_blank" href="https://www.stolicky24.sk/">
  277.                                         <img src="/graph/sk.png" style="width:22px;"> &nbsp; stolicky24.sk
  278.                                     </a>
  279.                                 {% endif %}
  280.                                 {% if app.request.locale == 'cz' or app.request.locale == 'sk' or app.request.locale == 'pl' %}
  281.                                     <br/>
  282.                                     <a target="_blank" href="https://www.mobila24.ro">
  283.                                         <img src="/graph/ro.png" style="width:22px;"> &nbsp; mobila24.ro
  284.                                     </a>
  285.                                 {% endif %}
  286.                                 {% if app.request.locale == 'ro' %}
  287.                                     <br/>
  288.                                     <br/>
  289.                                     <a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
  290.                                         <img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
  291.                                     </a>
  292.                                     &nbsp;
  293.                                     <a target="_blank" href="https://anpc.ro/ce-este-sal/">
  294.                                         <img src="/web/uploads/SAL.png" style="max-width:105px;"/>
  295.                                     </a>
  296.                                 {% endif %}
  297.                             </div>
  298.                         </div>
  299.                     </div>
  300.                 </div>
  301.             {% else %}
  302.                 <div class="column is-one-fifth spacer-footer">
  303.                     <div style="margin-top:50px;">
  304.                         {% if app.request.locale == 'sk' %}
  305.                             <a target="_blank" href="https://www.centrumkrzesel.pl/">
  306.                                 <img src="/graph/pl.png" style="width:22px;"> &nbsp; CentrumKrzesel.pl
  307.                             </a>
  308.                             <br/>
  309.                             <a target="_blank" href="https://www.ezidle.cz/">
  310.                                 <img src="/graph/cz.png" style="width:22px;"> &nbsp; eZidle.cz
  311.                             </a>
  312.                             <br/>
  313.                             <a target="_blank" href="https://www.mobila24.ro">
  314.                                 <img src="/graph/ro.png" style="width:22px;"> &nbsp; mobila24.ro
  315.                             </a>
  316.                         {% endif %}
  317.                         {% if app.request.locale == 'cz' %}
  318.                             <a target="_blank" href="https://www.centrumkrzesel.pl/">
  319.                                 <img src="/graph/pl.png" style="width:22px;"> &nbsp; CentrumKrzesel.pl
  320.                             </a>
  321.                             <br/>
  322.                             <a target="_blank" href="https://www.stolicky24.sk/">
  323.                                 <img src="/graph/sk.png" style="width:22px;"> &nbsp; stolicky24.sk
  324.                             </a>
  325.                             <br/>
  326.                             <a target="_blank" href="https://www.mobila24.ro">
  327.                                 <img src="/graph/ro.png" style="width:22px;"> &nbsp; mobila24.ro
  328.                             </a>
  329.                         {% endif %}
  330.                         {% if app.request.locale == 'ro' %}
  331.                             <a target="_blank" href="https://www.centrumkrzesel.pl/">
  332.                                 <img src="/graph/pl.png" style="width:22px;"> &nbsp; CentrumKrzesel.pl
  333.                             </a>
  334.                             <br/>
  335.                             <a target="_blank" href="https://www.stolicky24.sk/">
  336.                                 <img src="/graph/sk.png" style="width:22px;"> &nbsp; stolicky24.sk
  337.                             </a>
  338.                             <br/>
  339.                             <a target="_blank" href="https://www.ezidle.cz/">
  340.                                 <img src="/graph/cz.png" style="width:22px;"> &nbsp; eZidle.cz
  341.                             </a>
  342.                             <br/>
  343.                             <br/>
  344.                             <a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
  345.                                 <img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
  346.                             </a>
  347.                             &nbsp;
  348.                             <a target="_blank" href="https://anpc.ro/ce-este-sal/">
  349.                                 <img src="/web/uploads/SAL.png" style="max-width:105px;"/>
  350.                             </a>
  351.                         {% endif %}
  352.                     </div>
  353.                 </div>
  354.             {% endif %}
  355.             {#
  356.             <div class="column has-text-centered full-height-content">
  357.                 <img src="/v2/ico/footer_logo.png" class="has-text-centered" alt="logos"/>
  358.             </div>
  359.             #}
  360.         </div>
  361.         <!-- END SECTION VISIBLE FROM TABLET TO FULL HD -->
  362.         <!-- START SECTION VISIBLE FOR MOBILE ONLY -->
  363.         <div class="container is-hidden-tablet">
  364.             {% for article in articles %}
  365.                 {% if article.footer %}
  366.                     <div class="title has-text-centered">
  367.                         <a href="{{ path('single_article', {'id':article.id, 'slug':article.slug}) }}">
  368.                             {{ article.title }}
  369.                         </a>
  370.                     </div>
  371.                 {% endif %}
  372.             {% endfor %}
  373.             <div class="title has-text-centered">
  374.                 <a href="{{ path('blog') }}">
  375.                     {{ 'blog'|trans }}
  376.                 </a>
  377.             </div>
  378.             <div class="title has-text-centered">
  379.                 <a href="{{ path('contact') }}">
  380.                     {{ 'contact'|trans }}
  381.                 </a>
  382.             </div>
  383.             {% if app.user is defined and app.user and app.user.id %}
  384.                 <div class="title has-text-centered">
  385.                     <a href="{{ path('fos_user_security_logout') }}">
  386.                         {{ 'logout'|trans }}
  387.                     </a>
  388.                 </div>
  389.             {% else %}
  390.                 <div class="title has-text-centered">
  391.                     <a href="{{ path('fos_user_security_login_extension') }}">
  392.                         {{ 'login'|trans }}
  393.                     </a>
  394.                 </div>
  395.             {% endif %}
  396.             <div class="column">
  397.                 <div class="level is-mobile has-text-grey-light">
  398.                     {% if language.youtube %}
  399.                             <div class="level-item">
  400.                                 <a target="_blank" href="{{ language.youtube }}">
  401.                                     <span class="icon"><i class="fab fa-youtube"></i></span>
  402.                                 </a>
  403.                             </div>
  404.                     {% endif %}
  405.                     {% if language.facebook %}
  406.                             <div class="level-item">
  407.                                 <a target="_blank" href="{{ language.facebook }}">
  408.                                     <span class="icon"><i class="fab fa-facebook-f"></i></span>
  409.                                 </a>
  410.                             </div>
  411.                     {% endif %}
  412.                     {% if language.instagram %}
  413.                             <div class="level-item">
  414.                                 <a target="_blank" href="{{ language.instagram }}">
  415.                                     <span class="icon"><i class="fab fa-instagram"></i></span>
  416.                                 </a>
  417.                             </div>
  418.                     {% endif %}
  419.                 </div>
  420.             </div>
  421.             {% if app.request.locale == 'ro' %}
  422.                 <br/>
  423.                 <br/>
  424.                 <div style="text-align: center">
  425.                     <a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
  426.                         <img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
  427.                     </a>
  428.                     &nbsp;
  429.                     <a target="_blank" href="https://anpc.ro/ce-este-sal/">
  430.                         <img src="/web/uploads/SAL.png" style="max-width:105px;"/>
  431.                     </a>
  432.                 </div>
  433.             {% endif %}
  434.         </div>
  435.         <!-- END SECTION VISIBLE FOR MOBILE ONLY -->
  436.     </div>
  437. </footer>
  438. <!-- END OF FOOTER -->
  439. <!-- START OF BOTTOM HERO-->
  440. <section class="hero">
  441.     <div class="hero-body">
  442.         <div class="container">
  443.             <div class="level">
  444.                 <div class="level-left">
  445.                     {#
  446.                     <div class="level-item is-hidden-tablet">
  447.                         <figure class="image is-48x48">
  448.                             <img src="https://bulma.io/images/placeholders/48x48.png" alt="">
  449.                         </figure>
  450.                     </div>
  451.                     #}
  452.                     <div class="level-item is-size-7" style="color:#6f6f6f!important;">
  453.                         {{ 'all_rights_reserved'|trans|raw }}
  454.                     </div>
  455.                 </div>
  456.                 {% if app.request.locale == 'pl' %}
  457.                     <div class="level-right has-text-centered">
  458.                         <img alt="CentrumKrzesel.pl logo" src="/v2/ico/ck_logo_footer.svg"/>
  459.                     </div>
  460.                 {% endif %}
  461.             </div>
  462.             {% if language.helpline %}
  463.                 <div class="has-text-centered is-hidden-tablet" style="margin-top:30px;">
  464.                     <span style="font-weight: 100"> {{ 'call_us'|trans }}</span>
  465.                     {% if app.request.locale == 'ro' %}
  466.                         <a href="https://wa.me/40745599121">
  467.                             &nbsp; <img src="/images/ico/whatsapp_black.svg" class="phone-ico" style="max-height: 30px!important; width:14px; height:14px;"/>
  468.                         </a>
  469.                         &nbsp;&nbsp;
  470.                         <span style="font-weight: 500"><i class="fas fa-phone"></i>&nbsp; <a href="https://wa.me/40745599121">{{ language.helpline }}</a></span>
  471.                     {% else %}
  472.                         <span style="font-weight: 500"><i class="fas fa-phone"></i> {{ language.helpline }}</span>
  473.                     {% endif %}
  474.                 </div>
  475.             {% endif %}
  476.         </div>
  477.     </div>
  478. </section>
  479. <!-- END OF BOTTOM HERO -->