templates/front/theme1/index.html.twig line 1

Open in your IDE?
  1. {% extends "front/"~ app.request.server.get('APP_THEME') ~"/base.html.twig" %}
  2. {% block preload %}
  3.     {% if header_images is defined  and header_images is not empty %}
  4.            {% for item in header_images %}
  5.                 {% if item.path is defined %}
  6.                     <link rel="preload" as="image" href="{{asset_image(item.path)}}" />
  7.                 {% endif %}
  8.            {% endfor %}
  9.     {% endif %}
  10.     {% if preload_images != '' %}
  11.           {{preload_images|raw}}
  12.     {% endif %}
  13. {% endblock %}
  14. {% block stylesheets %}
  15.     {{parent()}}
  16.     {% if modele_galerie[0].type == 4 %}
  17.         <link rel="stylesheet" type="text/css" href="{{asset('templates/front/theme1/assets/plugins/flexslider/flexslider.css')}}" media="screen" >
  18.     {% endif %}
  19. {% endblock %}
  20. {% block body %}
  21.       
  22.  
  23.     {% if galleries and galleries is not empty and template_model_gallerie is defined and template_model_gallerie is not empty %}
  24.         {{ include(template_from_string(template_model_gallerie)) }}
  25.     {% endif %}
  26.     {% if bloc_post is defined  %}
  27.         {% for bloc in bloc_post.Bloc %}
  28.              {% if is_mobile() and  bloc.mobile == true   %}
  29.                 {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
  30.                     bloc: bloc,
  31.                 }, with_context = false)}}
  32.              {% endif %}
  33.             
  34.             {% if is_full_view() and is_mobile() == false and bloc.desktop == true %}
  35.                 {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
  36.                     bloc: bloc,
  37.                 }, with_context = false)}}
  38.             {% endif %}
  39.         {% endfor %}
  40.     {% endif %} 
  41.     {# {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/popup.html.twig', {'popup': popup})}} #}
  42. {% endblock %}
  43. {% block javascripts %}
  44.     {{parent()}}
  45.     {% if modele_galerie[0].type == 4 %}
  46.         <script src="{{asset('templates/front/theme1/assets/plugins/flexslider/jquery.flexslider.js')}}" ></script>
  47.         <script>    
  48.             /*-------------------------------------------------*/
  49.             /* =  Sx flexslider 
  50.             /*-------------------------------------------------*/
  51.             if ($(".sx_flexslider").length) {
  52.                 console.log($(".sx_flexslider").length);
  53.             $('.flex-carousel').flexslider({
  54.             animation: "slide",
  55.             controlNav: false,
  56.             animationLoop: true,
  57.             slideshow: false,
  58.             itemWidth: 150,
  59.             asNavFor: '.flex-slider'
  60.             });
  61.             $('.flex-slider').flexslider({
  62.             animation: "slide",
  63.             controlNav: false,
  64.             animationLoop: true,
  65.             slideshow: false,
  66.             sync: ".flex-carousel"
  67.             });
  68.             }
  69.         </script>
  70.     {% endif %}
  71. {% endblock %}