Файловый менеджер - Редактировать - /home/lmsyaran/public_html/templates/g5_hydrogen/custom/particles/jltestimonial2.html.twig
Назад
{% extends '@nucleus/partials/particle.html.twig' %} {% block stylesheets %} <style> {% if particle.particle_title_color or particle.particle_title_fontsize %} #{{ id }}.g5-particle-title { {% if particle.particle_title_color %}color: {{ particle.particle_title_color }};{% endif %}{% if particle.particle_title_fontsize %}font-size: {{particle.particle_title_fontsize}}px;{% endif %} } {% endif %} {% for item in particle.items %} {% if item.bgcolor != '' %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content {background-color: {{ item.bgcolor }};}{% endif %} {% if item.bgcolor != '' %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content:after { background-color: {{ item.bgcolor }};content: "";display: block;width: 14px;height: 14px;position: absolute;-webkit-box-sizing: content-box;box-sizing: content-box;} {% if particle.image_alignment == 'top' or particle.image_alignment == 'bottom' %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content { position: relative; } .tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content:after {-webkit-transform: translateX(-50%) scaleX(.75) rotate(45deg);-ms-transform: translateX(-50%) scaleX(.75) rotate(45deg);transform: translateX(-50%) scaleX(.75) rotate(45deg);{% if particle.align == 'center' %}left: 50%;{% elseif particle.align == 'right' %}right: 45px;{% else %}left: 45px; {% endif %} } {% if particle.image_alignment == 'bottom' %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content:after {top: calc(100% - 7px);}{% endif %} {% if particle.image_alignment == 'top' %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content:after {bottom: calc(100% - 7px);}{% endif %} {% else %}.tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content { position: relative; } .tm-content-{{id}} .tm-testimonial-{{loop.index}} .tm-content:after {-webkit-transform: scaleY(.75) rotate(135deg);-ms-transform: scaleY(.75) rotate(135deg);transform: scaleY(.75) rotate(135deg); {% if gantry.page.direction == 'rtl' %} {% if particle.image_alignment == 'left' %}right: -7px;{% else %}left: -7px;{% endif %} {% else %} {% if particle.image_alignment == 'left' %}left: -7px;{% else %}right: -7px;{% endif %} {% endif %} {% if particle.image_vertical_alignment %}top: 50%;{% else %}top: 45px;{% endif %} } {% endif %} {% endif %} {% endfor %} {% if particle.body_padding_top or particle.body_padding_bottom or particle.body_padding_left or particle.body_padding_right %}#{{ id }} .tm-feature-list{ {% if particle.body_padding_top %} padding-top: {{particle.body_padding_top|e}}px;{% endif %} {% if particle.body_padding_right %} padding-right: {{particle.body_padding_right|e}}px;{% endif %}{% if particle.body_padding_bottom %} padding-bottom: {{particle.body_padding_bottom|e}}px;{% endif %}{% if particle.body_padding_left %} padding-left: {{particle.body_padding_left|e}}px;{% endif %} }{% endif %} {% if particle.button_padding_top or particle.button_padding_bottom or particle.button_padding_left or particle.button_padding_right %}#{{ id }} .tm-price-button{ {% if particle.button_padding_top %} padding-top: {{particle.button_padding_top|e}}px;{% endif %} {% if particle.button_padding_right %} padding-right: {{particle.button_padding_right|e}}px;{% endif %}{% if particle.button_padding_bottom %} padding-bottom: {{particle.button_padding_bottom|e}}px;{% endif %}{% if particle.button_padding_left %} padding-left: {{particle.button_padding_left|e}}px;{% endif %} }{% endif %} {% if particle.customize_title_color or particle.customize_title_fontsize %}#{{ id }} .tm-title, #{{ id }} .tm-title a { {% if particle.customize_title_color %}color: {{particle.customize_title_color}}; {% endif %}{% if particle.customize_title_fontsize %}font-size: {{particle.customize_title_fontsize}}px;{% endif %} }{% endif %} {% if particle.customize_content_color or particle.customize_content_fontsize %}#{{ id }} .tm-content { {% if particle.customize_content_color %}color: {{particle.customize_content_color}};{% endif %}{% if particle.customize_content_fontsize %} font-size: {{particle.customize_content_fontsize}}px;{% endif %} }{% endif %} {% if particle.meta_color or particle.meta_fontsize %}#{{ id }} .tm-meta { {% if particle.meta_color %}color: {{particle.meta_color}};{% endif %}{% if particle.meta_fontsize %} font-size: {{particle.meta_fontsize}}px;{% endif %} }{% endif %} {% if particle.grid_parallax and particle.grid_masonry and particle.grid_type == 'grid' %} .tm-content-{{id}} {box-sizing: content-box;} {% endif %} </style> {% endblock %} {# Set Title/Meta/Content Text Transform #} {% set title_text_transform = particle.title_text_transform ? ' jl-text-' ~ particle.title_text_transform|e ~ '' %} {% set meta_text_transform = particle.meta_text_transform ? ' jl-text-' ~ particle.meta_text_transform|e ~ '' %} {% set content_text_transform = particle.content_text_transform ? ' jl-text-' ~ particle.content_text_transform|e ~ '' %} {# Set Viewport Height #} {% if particle.viewport_height == 'full' %} {% set viewport_height = 'jl-height-viewport="offset-top: true;"' %} {% elseif particle.viewport_height == 'percent' %} {% set viewport_height = 'jl-height-viewport="offset-top: true; offset-bottom: 20;"' %} {% elseif particle.viewport_height == 'section' %} {% set viewport_height = 'jl-height-viewport="offset-top: true; offset-bottom: 50;"' %} {% elseif particle.viewport_height == 'expand' %} {% set viewport_height = 'jl-height-viewport="expand: true;"' %} {% endif %} {# Set Max-Width Content Section #} {% set container_maxwidth = particle.container_maxwidth != 'default' ? 'jl-container jl-container-' ~ particle.container_maxwidth|e ~ '' : 'jl-container' %} {# Set Padding #} {% if particle.padding == 'default' %} {% set padding = ' jl-section' %} {% elseif particle.padding == 'none' %} {% set padding = ' jl-section jl-padding-remove-vertical' %} {% else %} {% set padding = ' jl-section jl-section-' ~ particle.padding|e ~ '' %} {% endif %} {# Set Background color #} {% set parallax_bg_color = particle.parallax_bg_color ? 'style="background-color: ' ~ particle.parallax_bg_color ~ ';"' %} {% set parallax_overlay=(particle.parallax_bg_overlay ? '<div class="jl-position-cover" style="background-color: '~ particle.parallax_bg_overlay ~';"></div>') %} {% set parallax_easing = particle.parallax_easing ? 'easing:' ~ particle.parallax_easing / 10 ~ '' %} {# Set Max-Width Content #} {% set content_maxwidth %} {% if particle.g_maxwidth != 'inherit' %} jl-width-{{particle.g_maxwidth}}{% if particle.g_maxwidth_breakpoint != 'always' %}@{{particle.g_maxwidth_breakpoint}}{% endif %}{% if particle.g_maxwidth_alignment == 'left' %}{% elseif particle.g_maxwidth_alignment == 'center' %} jl-margin-auto{% else %} jl-margin-auto-left{% endif %}{% endif %} {% endset %} {# Set Parallax Background #} {% set parallaxbackground %} {% if particle.parallax_image %} <div data-src="{{ url(particle.parallax_image)|e }}" class="jl-background-norepeat{{ particle.parallax_bg_overlay ? ' jl-position-relative' : '' }}{{padding}} jl-background-{{particle.background_image_position|e}}{% if particle.background_image_size != 'auto' %} jl-background-{{particle.background_image_size|e}}{% endif %}{% if particle.parallax_bg_visibility != 'always' %} jl-background-image@{{particle.parallax_bg_visibility|e}}{% endif %}{% if particle.vertical_alignment != 'none' %} jl-flex jl-flex-{{particle.vertical_alignment|e}}{% endif %}{% if particle.parallax_text_color != 'default' %} jl-{{particle.parallax_text_color|e}}{% endif %}{% if particle.blendmode != 'inherit' %} jl-background-blend-{{particle.blendmode|e}}{% endif %}" {{parallax_bg_color|default('')|raw}}{% if particle.horizontal_start or particle.horizontal_end or particle.vertical_start or particle.vertical_end or particle.parallax_easing %} jl-parallax="{% if particle.horizontal_start or particle.horizontal_end %}bgx: {{particle.horizontal_start|e}},{{particle.horizontal_end|e}};{% endif %}{% if particle.vertical_start or particle.vertical_end %}bgy: {{particle.vertical_start|e}},{{particle.vertical_end|e}};{% endif %}{% if particle.parallax_bg_breakpoint != 'always' %} media: @{{particle.parallax_bg_breakpoint|e}};{% endif %}{{parallax_easing}}" {% endif %} jl-img {{viewport_height|raw}}> {{parallax_overlay|raw}} {% if particle.container_maxwidth != 'none' %} <div class="{{container_maxwidth}}"> {% endif %} {% endif %} {% endset %} {# End Parallax Background #} {% set endparallaxbackground %} {% if particle.parallax_image %} {% if particle.container_maxwidth != 'none' %} </div> {% endif %} </div> {% endif %} {% endset %} {# Set Horizontal #} {% set pahorizontal %} {% if particle.pa_horizontal_start or particle.pa_horizontal_end %}x: {% if particle.pa_horizontal_start == '' %}0{% else %}{{particle.pa_horizontal_start }}{% endif %},{% if particle.pa_horizontal_end == '' %}0{% else %}{{particle.pa_horizontal_end }}{% endif %};{% endif %} {% endset %} {# Set Vertical #} {% set pavertical %} {% if particle.pa_vertical_start or particle.pa_vertical_end %}y: {% if particle.pa_vertical_start == '' %}0{% else %}{{particle.pa_vertical_start }}{% endif %},{% if particle.pa_vertical_end == '' %}0{% else %}{{particle.pa_vertical_end }}{% endif %};{% endif %} {% endset %} {# Set Scale #} {% set scale %} {% if particle.scale_start or particle.scale_end %}scale: {% if particle.scale_start == '' %}1{% else %}{{particle.scale_start / 100 }}{% endif %},{% if particle.scale_end == '' %}1{% else %} {{particle.scale_end / 100 }}{% endif %};{% endif %} {% endset %} {# Set Rotate #} {% set rotate %}{% if particle.rotate_start or particle.rotate_end %} rotate: {% if particle.rotate_start == '' %}0{% else %}{{particle.rotate_start}}{% endif %},{% if particle.rotate_end == '' %}0{% else %}{{particle.rotate_end}}{% endif %};{% endif %} {% endset %} {# Set Opacity #} {% set opacity %} {% if particle.opacity_start or particle.opacity_end %}opacity: {% if particle.opacity_start == '' %}1{% else %}{{particle.opacity_start / 100 }}{% endif %},{% if particle.opacity_end == '' %}1{% else %}{{particle.opacity_end / 100 }}{% endif %};{% endif %} {% endset %} {# Set Scrollspy Animation #} {% set scrollspy_cls = particle.animation != 'inherit' and particle.animation != 'parallax' ? ' jl-scrollspy-class' %} {# Set Animation #} {% set animation %} {% if particle.animation != 'inherit' and particle.animation != 'parallax' %} jl-scrollspy="target: [jl-scrollspy-class]; cls: jl-animation-{{particle.animation|e}};{% if particle.animation_repeat == 'enabled' %} repeat: true;{% endif %} delay:{% if particle.delay_element_animations %} {{particle.animation_delay|default('200')|e}};{% else %} false;{% endif %}" {% elseif particle.animation == 'parallax' %} {% if particle.pa_horizontal_start or particle.pa_horizontal_end or particle.pa_vertical_start or particle.pa_vertical_end or particle.scale_start or particle.scale_end or particle.rotate_start or particle.rotate_end or particle.opacity_start or particle.opacity_end or particle.easing or particle.pa_viewport or particle.pa_breakpoint %} jl-parallax="{{pahorizontal}}{{pavertical}}{{scale}}{{rotate}}{{opacity}}{% if particle.easing == '' %}{% else %}easing: {{ particle.easing / 100 }};{% endif %}{% if particle.pa_viewport != '' %}viewport:{{ particle.pa_viewport / 100 }};{% endif %}{% if particle.pa_breakpoint != 'always' %}media: @{{particle.pa_breakpoint|e}}{% endif %}"{% endif %} {% endif %} {% endset %} {# Set Particle Alignment #} {% set particle_alignment %} {% if particle.align != 'inherit' %} jl-text-{{particle.align|e}}{% if particle.breakpoint != 'always' %}@{{particle.breakpoint|e}}{% endif %}{% endif %}{% if particle.align != 'inherit' and particle.breakpoint != 'always' %}{% if particle.fallback != 'inherit' %} jl-text-{{particle.fallback|e}}{% endif %}{% endif %} {% endset %} {# set Particle Title Style #} {% set particle_title_style %} {% if particle.particle_title %} <{{particle.particle_title_element|e}} id="{{ id }}" class="g5-particle-title{% if particle.particle_title_align != 'inherit' %} jl-text-{{particle.particle_title_align|e}}{% endif %}{% if particle.particle_predefined_color != 'default' %} jl-text-{{particle.particle_predefined_color|e}}{% endif %}{% if particle.particle_title_style != 'default' %} jl-{{particle.particle_title_style|e}}{% endif %}{% if particle.particle_title_decoration != 'none' %} jl-heading-{{particle.particle_title_decoration|e}}{% endif %}"> {% if particle.particle_title_decoration == 'line' %} <span>{{particle.particle_title|raw}}</span> {% else %} {{particle.particle_title|raw}} {% endif %} </{{particle.particle_title_element|e}}> {% endif %} {% endset %} {% set slider_animation_set = particle.slider_animation_set == 'enabled' ? 'sets: 1;' %} {% set slider_animation_center = particle.slider_animation_center == 'enabled' ? 'center: 1;' %} {% set slider_animation_finite = particle.slider_animation_finite == 'enabled' ? 'finite: 1;' %} {% set slider_animation_autoplay = particle.slider_animation_autoplay == 'enabled' ? 'autoplay: 1;' %} {% set slider_animation_interval = (particle.slider_animation_autoplay == 'enabled' and particle.slider_animation_interval) ? 'autoplay-interval:' ~ particle.slider_animation_interval * 1000 ~ ';' %} {% set slider_pause_onhover = particle.slider_pause_onhover == 'disabled' ? 'pauseOnHover: false;' %} {% set velocity = particle.slider_velocity ? 'velocity:' ~ particle.slider_velocity / 100 ~ ';' %} {# Set Image Width/Height #} {% set imagewidth = particle.image_width ? ' width="' ~ particle.image_width ~ '"' %} {% set imageheight = particle.image_height ? ' height="' ~ particle.image_height ~ '"' %} {# Set Masonry/Parallax/Scrollspy #} {% set grid_masonry = particle.grid_masonry ? 'masonry: 1;' %} {% set grid_parallax = particle.grid_parallax ? 'parallax: ' ~ particle.grid_parallax ~ '' %} {# Set Image Margin Top Class #} {% if particle.image_alignment == 'bottom' or particle.image_alignment == 'between' %} {% set image_top_cls = particle.image_margin_top != 'default' ? ' jl-margin-' ~ particle.image_margin_top|e ~ '-top' : ' jl-margin-top' %} {% endif %} {% set meta_margin_top = particle.meta_margin_top != 'default' ? ' jl-margin-' ~ particle.meta_margin_top|e ~ '-top' : ' jl-margin-top' %} {% set meta_color = particle.pre_meta_color != 'default' ? ' jl-text-' ~ particle.pre_meta_color|e ~ '' %} {% set meta_style = particle.meta_style != 'default' ? ' jl-' ~ particle.meta_style|e ~ '' %} {# Set Image Border Class #} {% set image_border_cls = particle.image_border != 'none' ? ' jl-border-' ~ particle.image_border|e ~ '' %} {# Image Box Shadow #} {% set image_boxshadow = particle.box_shadow != 'none' ? ' jl-box-shadow-' ~ particle.box_shadow|e ~ '' %} {% set image_boxshadow_hover = particle.box_shadow_hover != 'none' ? ' jl-box-shadow-hover-' ~ particle.box_shadow_hover|e ~ '' %} {# Set Item Content #} {% set itemcontent %} {% for item in particle.items %} {# Set Item Meta #} {% set item_meta %} {% if item.meta %} <div class="tm-meta{{meta_text_transform}}{{meta_margin_top}}{{meta_color}}{{meta_style}}"> {{item.meta|raw}} </div> {% endif %} {% endset %} {# Set Link Scroll #} {% set linkscroll = item.buttonlink|e matches '/#/' ? ' jl-scroll' %} {% if particle.grid_type == 'slider' %} {% if item.bgcolor != '' %} <li class="tm-testimonial-{{loop.index}}{% if particle.phone_portrait %} jl-width-1-{{ particle.phone_portrait|e }}{% endif %}{% if particle.phone_landscape != 'inherit' %} jl-width-1-{{ particle.phone_landscape|e }}@s{% endif %}{% if particle.tablet_landscape != 'inherit' %} jl-width-1-{{ particle.tablet_landscape|e }}@m{% endif %}{% if particle.desktop != 'inherit' %} jl-width-1-{{ particle.desktop|e }}@l{% endif %}{% if particle.large_desktop != 'inherit' %} jl-width-1-{{ particle.large_desktop|e }}@xl{% endif %}"> {% else %} <li class="tm-item{% if particle.phone_portrait %} jl-width-1-{{ particle.phone_portrait|e }}{% endif %}{% if particle.phone_landscape != 'inherit' %} jl-width-1-{{ particle.phone_landscape|e }}@s{% endif %}{% if particle.tablet_landscape != 'inherit' %} jl-width-1-{{ particle.tablet_landscape|e }}@m{% endif %}{% if particle.desktop != 'inherit' %} jl-width-1-{{ particle.desktop|e }}@l{% endif %}{% if particle.large_desktop != 'inherit' %} jl-width-1-{{ particle.large_desktop|e }}@xl{% endif %}"> {% endif %} {% else %} {% if item.bgcolor != '' %} <div class="tm-testimonial-{{loop.index}}{% if particle.phone_portrait %} jl-width-1-{{ particle.phone_portrait|e }}{% endif %}{% if particle.phone_landscape != 'inherit' %} jl-width-1-{{ particle.phone_landscape|e }}@s{% endif %}{% if particle.tablet_landscape != 'inherit' %} jl-width-1-{{ particle.tablet_landscape|e }}@m{% endif %}{% if particle.desktop != 'inherit' %} jl-width-1-{{ particle.desktop|e }}@l{% endif %}{% if particle.large_desktop != 'inherit' %} jl-width-1-{{ particle.large_desktop|e }}@xl{% endif %}"> {% else %} <div class="tm-item{% if particle.phone_portrait %} jl-width-1-{{ particle.phone_portrait|e }}{% endif %}{% if particle.phone_landscape != 'inherit' %} jl-width-1-{{ particle.phone_landscape|e }}@s{% endif %}{% if particle.tablet_landscape != 'inherit' %} jl-width-1-{{ particle.tablet_landscape|e }}@m{% endif %}{% if particle.desktop != 'inherit' %} jl-width-1-{{ particle.desktop|e }}@l{% endif %}{% if particle.large_desktop != 'inherit' %} jl-width-1-{{ particle.large_desktop|e }}@xl{% endif %}"> {% endif %} {% endif %} <div class="tm-item-inner{% if item.item_class %} {{ item.item_class }}{% endif %}"{{scrollspy_cls}}> {% if particle.image_alignment == 'top' or particle.image_alignment == 'bottom' %} {% if particle.image_alignment == 'top' %} <div class="jl-clearfix"> <div class="tm-author-container{% if particle.author_container != 'left' %} jl-text-{{particle.author_container}}{% endif %}{% if particle.align != 'inherit' %} jl-flex-{{particle.align|e}}{% if particle.breakpoint != 'always' %}@{{particle.breakpoint|e}}{% endif %}{% endif %}{% if particle.fallback != 'inherit' %} jl-flex-{{particle.fallback|e}}{% endif %}"> {% if item.image %} <div class="tm-testimonial-image"> {% if item.link %}<a target="{{ item.target|default('_self')|e }}" href="{{ item.link|e }}"{{linkscroll}}>{% endif %} <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_top_cls}}{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% if item.link %}</a>{% endif %} </div> {% endif %} {% if item.title %} <{{particle.title_element|e}} class="tm-title jl-margin-remove-bottom{{title_text_transform}}{% if particle.title_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.title_margin_top|e }}-top{% endif %}{% if particle.title_color != 'default' %} jl-text-{{particle.title_color|e}}{% endif %}{% if particle.title_style != 'default' %} jl-{{particle.title_style|e}}{% endif %}{% if particle.title_decoration != 'none' %} jl-heading-{{particle.title_decoration|e}}{% endif %}"> {% if particle.title_decoration == 'line' %} <span> {% endif %} {% if item.link %} <a target="{{ item.target|default('_self')|e }}" href="{{ item.link|e }}"{{linkscroll}}>{{ item.title|raw }}</a> {% else %} {{ item.title|raw }} {% endif %} {% if particle.title_decoration == 'line' %} </span> {% endif %} </{{particle.title_element|e}}> {% endif %} {{item_meta}} </div> </div> {% endif %} <div class="tm-item-inner{% if item.inverse != 'default' %} jl-{{item.inverse}}{% endif %}{% if item.item_class %} {{ item.item_class }}{% endif %}"> {% if item.subtitle %} <div class="tm-content jl-panel{{content_text_transform}}{% if particle.content_padding == 'default' %} jl-padding{% else %} jl-padding-{{ particle.content_padding|e }}{% endif %}{% if particle.content_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.content_margin_top|e }}-top{% endif %}{% if particle.content_style != 'default' %} jl-text-{{ particle.content_style|e }}{% endif %}{% if particle.content_text_color != 'default' %} jl-text-{{ particle.content_text_color|e }}{% endif %}">{{ item.subtitle|raw }}</div> {% endif %} </div> {% if particle.image_alignment == 'bottom' %} <div class="jl-clearfix"> <div class="tm-author-container{% if particle.author_container != 'left' %} jl-text-{{particle.author_container}}{% endif %}{% if particle.align != 'inherit' %} jl-flex-{{particle.align|e}}{% if particle.breakpoint != 'always' %}@{{particle.breakpoint|e}}{% endif %}{% endif %}{% if particle.fallback != 'inherit' %} jl-flex-{{particle.fallback|e}}{% endif %}"> {% if item.image %} <div class="tm-testimonial-image"> {% if item.link %}<a href="{{ item.link|e }}" target="{{ item.target|default('_self')|e }}"{{linkscroll}}>{% endif %} <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_top_cls}}{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% if item.link %}</a>{% endif %} </div> {% endif %} {% if item.title %} <{{particle.title_element|e}} class="tm-title jl-margin-remove-bottom{{title_text_transform}}{% if particle.title_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.title_margin_top|e }}-top{% endif %}{% if particle.title_color != 'default' %} jl-text-{{particle.title_color|e}}{% endif %}{% if particle.title_style != 'default' %} jl-{{particle.title_style|e}}{% endif %}{% if particle.title_decoration != 'none' %} jl-heading-{{particle.title_decoration|e}}{% endif %}"> {% if particle.title_decoration == 'line' %} <span> {% endif %} {% if item.link %} <a target="{{ item.target|default('_self')|e }}" href="{{ item.link|e }}"{{linkscroll}}>{{ item.title|raw }}</a> {% else %} {{ item.title|raw }} {% endif %} {% if particle.title_decoration == 'line' %} </span> {% endif %} </{{particle.title_element|e}}> {% endif %} {{item_meta}} </div> </div> {% endif %} {% else %} <div class="jl-child-width-expand{% if particle.image_grid_gutter != 'default' %} jl-grid-column-{{ particle.image_grid_gutter|e }}{% endif %}{% if particle.image_vertical_alignment %} jl-flex-middle{% endif %}" jl-grid> <div class="jl-width-{{ particle.image_grid_width }}{% if particle.image_grid_breakpoint != 'default' %}@{{ particle.image_grid_breakpoint|e }}{% endif %}{% if particle.image_alignment == 'right' %} jl-flex-last{% if particle.image_grid_breakpoint != 'default' %}@{{ particle.image_grid_breakpoint|e }}{% endif %}{% endif %}"> <div class="tm-author-container{% if particle.author_container != 'left' %} jl-text-{{particle.author_container}}{% endif %}{% if particle.align != 'inherit' %} jl-flex-{{particle.align|e}}{% if particle.breakpoint != 'always' %}@{{particle.breakpoint|e}}{% endif %}{% endif %}{% if particle.fallback != 'inherit' %} jl-flex-{{particle.fallback|e}}{% endif %}"> {% if item.image %} <div class="tm-testimonial-image"> {% if item.link %}<a target="{{ item.target|default('_self')|e }}" href="{{ item.link|e }}"{{linkscroll}}>{% endif %} <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_top_cls}}{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% if item.link %}</a>{% endif %} </div> {% endif %} {% if item.title %} <{{particle.title_element|e}} class="tm-title jl-margin-remove-bottom{{title_text_transform}}{% if particle.title_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.title_margin_top|e }}-top{% endif %}{% if particle.title_color != 'default' %} jl-text-{{particle.title_color|e}}{% endif %}{% if particle.title_style != 'default' %} jl-{{particle.title_style|e}}{% endif %}{% if particle.title_decoration != 'none' %} jl-heading-{{particle.title_decoration|e}}{% endif %}"> {% if particle.title_decoration == 'line' %} <span> {% endif %} {% if item.link %} <a target="{{ item.target|default('_self')|e }}" href="{{ item.link|e }}"{{linkscroll}}>{{ item.title|raw }}</a> {% else %} {{ item.title|raw }} {% endif %} {% if particle.title_decoration == 'line' %} </span> {% endif %} </{{particle.title_element|e}}> {% endif %} {{item_meta}} </div> </div> <div> <div class="tm-item-inner jl-margin-remove-first-child{% if item.inverse != 'default' %} jl-{{item.inverse}}{% endif %}{% if item.item_class %} {{ item.item_class }}{% endif %}"> {% if item.subtitle %} <div class="tm-content jl-panel{{content_text_transform}}{% if particle.content_padding == 'default' %} jl-padding{% else %} jl-padding-{{ particle.content_padding|e }}{% endif %}{% if particle.content_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.content_margin_top|e }}-top{% endif %}{% if particle.content_style != 'default' %} jl-text-{{ particle.content_style|e }}{% endif %}{% if particle.content_text_color != 'default' %} jl-text-{{ particle.content_text_color|e }}{% endif %}"> {{ item.subtitle|raw }} </div> {% endif %} </div> </div> </div> {% endif %} </div> {% if particle.grid_type == 'slider' %} </li> {% else %} </div> {% endif %} {% endfor %} {% endset %} {% set grid_column_gap = particle.grid_column_gap != 'default' ? ' jl-grid-column-' ~ particle.grid_column_gap ~ '' %} {% set grid_row_gap = particle.grid_row_gap != 'default' ? ' jl-grid-row-' ~ particle.grid_row_gap ~ '' %} {% if ( particle.grid_column_gap == particle.grid_row_gap ) and not (particle.grid_column_gap == 'default' and particle.grid_row_gap == 'default') %} {% set grid_cr_gap = ' jl-grid-' ~ particle.grid_column_gap ~ '' %} {% else %} {% set grid_cr_gap = grid_column_gap ~ grid_row_gap %} {% endif %} {% set center_columns = particle.center_columns ? ' jl-flex-center' %} {% set center_rows = particle.center_rows ? ' jl-flex-middle' %} {% block particle %} {% if particle.enabled %} {{parallaxbackground}} {{particle_title_style}} {% if particle.grid_type == 'slider' %} <div id="{{ id }}" class="tm-content-{{id}}{{content_maxwidth}}{% if particle.class %} {{ particle.class }}{% endif %}{{particle_alignment}}{% if particle.margin == 'inherit' %}{% elseif particle.margin == 'default' %} jl-margin{% else %} jl-margin-{{particle.margin|e}}{% endif %}{% if particle.visibility != 'inherit' %} jl-visible@{{particle.visibility|e}}{% endif %}" jl-slider="{{slider_animation_set}}{{slider_animation_center}}{{slider_animation_finite}}{{velocity}}{{slider_animation_autoplay}}{{slider_pause_onhover}}{{slider_animation_interval}}"{{animation}}> <div class="jl-position-relative"> {% if particle.slidenav_position == 'outside' %} <div class="jl-slider-container"> {% endif %} <ul class="jl-slider-items jl-grid jl-grid-match{% if particle.grid_divider %} jl-grid-divider{% endif %}{{grid_column_gap}}"{{slider_viewport}}> {{itemcontent}} </ul> {% if particle.slidenav_position == 'outside' %} </div> {% endif %} {% if particle.slidenav_icon_left and particle.slidenav_icon_right %} {% set slidenav_icon_left = '<i class="' ~ particle.slidenav_icon_left ~ '" aria-hidden="true"></i>' %} {% set slidenav_icon_right = '<i class="' ~ particle.slidenav_icon_right ~ '" aria-hidden="true"></i>' %} {% else %} {% set slidenav_large_style = particle.larger_slidenav ? ' jl-slidenav-large' %} {% set slidenav_next = 'jl-slidenav-next' %} {% set slidenav_prev = 'jl-slidenav-previous' %} {% endif %} {% set slidenav_text_color = particle.slidenav_color != 'default' ? ' jl-' ~ particle.slidenav_color ~ '' %} {# Slidenav #} {% if particle.slidenav_position != 'none' %} {% if particle.slidenav_position == 'default' %} <div class="{% if particle.slidenav_breakpoint != 'always' %}jl-visible@{{particle.slidenav_breakpoint|e}}{% endif %}{{ particle.slidenav_hover == 'enabled' ? ' jl-hidden-hover jl-hidden-touch' : '' }}{{ slidenav_text_color }}"> <a class="tm-slidenav{{ slidenav_large_style }}{% if particle.slidenav_margin != 'none' %} jl-position-{{ particle.slidenav_margin|e }}{% endif %} jl-position-center-left" href="#" {{slidenav_prev}} jl-slider-item="previous">{{slidenav_icon_left|raw}}</a> <a class="tm-slidenav{{ slidenav_large_style }}{% if particle.slidenav_margin != 'none' %} jl-position-{{ particle.slidenav_margin|e }}{% endif %} jl-position-center-right" href="#" {{slidenav_next}} jl-slider-item="next">{{slidenav_icon_right|raw}}</a> </div> {% elseif particle.slidenav_position == 'outside' %} <div class="{% if particle.slidenav_breakpoint != 'always' %}jl-visible@{{particle.slidenav_breakpoint|e}}{% endif %}{% if particle.slidenav_outside_color != 'default' %} jl-{{particle.slidenav_outside_color|e}}{% endif %}"> <a class="tm-slidenav{{ slidenav_large_style }}{% if particle.slidenav_margin != 'none' %} jl-position-{{ particle.slidenav_margin|e }}{% endif %} jl-position-center-left" href="#" {{slidenav_prev}} jl-slider-item="previous" jl-toggle="cls: jl-position-center-left-out jl-position-center-left; mode: media; media:{% if particle.slidenav_outside_breakpoint != 'always' %} @{{particle.slidenav_outside_breakpoint|e}}{% endif %}">{{slidenav_icon_left|raw}}</a> <a class="tm-slidenav{{ slidenav_large_style }}{% if particle.slidenav_margin != 'none' %} jl-position-{{ particle.slidenav_margin|e }}{% endif %} jl-position-center-right" href="#" {{slidenav_next}} jl-slider-item="next" jl-toggle="cls: jl-position-center-right-out jl-position-center-right; mode: media; media:{% if particle.slidenav_outside_breakpoint != 'always' %} @{{particle.slidenav_outside_breakpoint|e}}{% endif %}">{{slidenav_icon_right|raw}}</a> </div> {% else %} <div class="jl-slidenav-container{% if particle.slidenav_margin != 'none' %} jl-position-{{ particle.slidenav_margin|e }}{% endif %} jl-position-{{ particle.slidenav_position|e }}{% if particle.slidenav_breakpoint != 'always' %} jl-visible@{{particle.slidenav_breakpoint|e}}{% endif %}{{ particle.slidenav_hover == 'enabled' ? ' jl-hidden-hover jl-hidden-touch' : '' }}{{slidenav_text_color}}"> <a class="tm-slidenav{{ slidenav_large_style }}" href="#" {{slidenav_prev}} jl-slider-item="previous">{{slidenav_icon_left|raw}}</a> <a class="tm-slidenav{{ slidenav_large_style }}" href="#" {{slidenav_next}} jl-slider-item="next">{{slidenav_icon_right|raw}}</a> </div> {% endif %} {% endif %} {# End Slidenav #} </div> {# Navigation #} {% if particle.navigation == 'enabled' %} {% if particle.navigation_color != 'default' %} <div class="jl-{{particle.navigation_color|e}}"> {% endif %} <ul class="tm-nav jl-slider-nav jl-dotnav{% if particle.navigation_position %} jl-flex-{{ particle.navigation_position|e }}{% endif %}{% if particle.navigation_margin %} jl-margin-{{ particle.navigation_margin|e }}{% endif %}{% if particle.navigation_breakpoint != 'always' %} jl-visible@{{particle.navigation_breakpoint|e}}{% endif %}" jl-margin> {% for item in particle.carouselitems %} <li jl-slider-item="{{ loop.index0 }}">{% if item.image_alt %}<a href="#" jl-tooltip="{{ item.image_alt|raw }}"></a> {% else %} <a href="#"></a> {% endif %}</li> {% endfor %} </ul> {% if particle.navigation_color != 'default' %} </div> {% endif %} {% endif %} {# End Navigation #} </div> {% else %} <div id="{{ id }}" class="tm-content-{{id}}{{content_maxwidth}}{% if particle.class %} {{ particle.class }}{% endif %}{% if particle.grid_divider %} jl-grid-divider{% endif %}{{grid_cr_gap}}{{center_columns}}{{center_rows}}{% if particle.phone_portrait %} jl-child-width-1-{{ particle.phone_portrait|e }}{% endif %}{% if particle.phone_landscape != 'inherit' %} jl-child-width-1-{{ particle.phone_landscape|e }}@s{% endif %}{% if particle.tablet_landscape != 'inherit' %} jl-child-width-1-{{ particle.tablet_landscape|e }}@m{% endif %}{% if particle.desktop != 'inherit' %} jl-child-width-1-{{ particle.desktop|e }}@l{% endif %}{% if particle.large_desktop != 'inherit' %} jl-child-width-1-{{ particle.large_desktop|e }}@xl{% endif %}{{particle_alignment}}{% if particle.margin == 'inherit' %}{% elseif particle.margin == 'default' %} jl-margin{% else %} jl-margin-{{particle.margin|e}}{% endif %}{% if particle.visibility != 'inherit' %} jl-visible@{{particle.visibility|e}}{% endif %}"{{animation}} jl-grid="{{grid_masonry}}{{grid_parallax}}"> {{itemcontent}} </div> {% endif %} {{endparallaxbackground}} {% endif %} {% endblock %}
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.14 |
proxy
|
phpinfo
|
Настройка