Файловый менеджер - Редактировать - /home/lmsyaran/public_html/templates/g5_hydrogen/custom/particles/jlflipster.html.twig
Назад
{% extends '@nucleus/partials/particle.html.twig' %} {% set rand = random() %} {% block stylesheets %} <link rel="stylesheet" href="{{ url('gantry-theme://css/jquery.flipster.min.css') }}" type="text/css" /> <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 %} {% if particle.customize_title_color or particle.customize_title_fontsize %} #{{ id }} .tm-title { {% 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 %} </style> {% endblock %} {% block javascript_footer %} {% do gantry.load('jquery') %} <script src="{{ url('gantry-theme://js/jquery.flipster.min.js') }}"></script> <script> jQuery('.tm-flipster-{{rand}}').flipster({ itemContainer: jQuery('.tm-flipster-container'), itemSelector: jQuery('.tm-flipster-item'), fadeIn: {{particle.flip_animation|e}}, loop: {{particle.flip_loop == "1" ? "true" : "false"}}, autoplay: {{particle.flip_autoplay > 0 ? particle.flip_autoplay : "false"}}, pauseOnHover: {{particle.flip_pause == "1" ? "true" : "false"}}, style: '{{particle.flip_style|e}}', spacing: {{particle.flip_spacing|e}}, click: {{particle.flip_click == "1" ? "true" : "false"}}, keyboard: {{particle.flip_keyboard == "1" ? "true" : "false"}}, scrollwheel: {{particle.flip_scrollwheel == "1" ? "true" : "false"}}, touch: {{particle.flip_touch == "1" ? "true" : "false"}}, buttons: {{particle.flip_navigation == "1" ? "true" : "false"}}, start: {% if particle.flip_start == 'default' %}0{% else %} 'center'{% endif %}, }); jQuery('.tm-flipster-item-container').css('backgroundColor', '{{particle.bgcolor}}'); </script> {% endblock %} {# 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 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 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 Animation #} {% set animation %} {% if particle.animation != 'inherit' and particle.animation != 'parallax' %} jl-scrollspy="cls: jl-animation-{{particle.animation|e}};{% if particle.animation_repeat == 'enabled' %} repeat: true;{% endif %}{% if particle.animation_delay %} delay: {{particle.animation_delay|e}};{% 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 imagewidth = particle.image_width ? ' width="' ~ particle.image_width ~ '"' %} {% set imageheight = particle.image_height ? ' height="' ~ particle.image_height ~ '"' %} {# Set Button Class #} {% set button_cls %} {% if particle.buttonclass == 'link' %}jl-link{% elseif particle.buttonclass == 'link-muted' or particle.buttonclass == 'link-text' %}jl-{{particle.buttonclass|e}}{% else %}jl-button jl-button-{{particle.buttonclass|e}}{% endif %} {% endset %} {# Set Button Size #} {% set button_size %} {% if particle.buttonclass == 'link' or particle.buttonclass == 'link-muted' or particle.buttonclass == 'link-text' or particle.buttonclass == 'text' %}{% else %}{% if particle.link_button_size != 'default' %} jl-button-{{particle.link_button_size|e}}{% endif %}{% endif %} {% endset %} {# Set Image Border Class #} {% set image_border_cls %} {% if not particle.image_padding %}{% if particle.image_border != 'none' %} jl-border-{{particle.image_border|e}}{% endif %}{% endif %} {% endset %} {# Image Box Shadow #} {% if particle.style == 'blank' %} {% 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 ~ '' %} {% endif %} {% set title_hover = (particle.title_hover ? ' class="jl-link-'~ particle.title_hover ~'"') %} {# Set Grid Content #} {% set grid_content %} {% for item in particle.items %} {# Set Link Scroll #} {% set linkscroll = item.buttonlink|e matches '/#/' ? ' jl-scroll' %} {% set item_title %} {% 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 particle.link_title and item.buttonlink %} <a{{ title_hover|raw }} href="{{ item.buttonlink|e }}" target="{{ particle.buttontarget|default('_self')|e }}"{{linkscroll}}>{{ item.title|raw }}</a> {% else %} {{ item.title|raw }} {% endif %} {% if particle.title_decoration == 'line' %} </span> {% endif %} </{{particle.title_element|e}}> {% endif %} {% endset %} {% set item_meta %} {% if item.meta %} <div class="tm-meta{{meta_text_transform}}{% if particle.meta_margin_top == 'default' %} jl-margin-top{% else %} jl-margin-{{ particle.meta_margin_top|e }}-top{% endif %}{% if particle.pre_meta_color != 'default' %} jl-text-{{ particle.pre_meta_color|e }}{% endif %}{% if particle.meta_style != 'default' %} jl-{{ particle.meta_style|e }}{% endif %}"> {{item.meta|raw}} </div> {% endif %} {% endset %} {% set item_image %} {% if item.image %} <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% endif %} {% endset %} {# Set Button #} {% set item_button %} {% if item.buttonlink and item.buttontext %} <div class="{% if particle.link_margin_top == 'default' %}jl-margin-top{% else %}jl-margin-{{ particle.link_margin_top|e }}-top{% endif %}"> <a href="{{ item.buttonlink|e }}" target="{{ particle.buttontarget|default('_self')|e }}" title="{{ item.buttontext|e }}" class="{{button_cls}}{{button_size}}"{{linkscroll}}>{{ item.buttontext|e }}</a> </div> {% endif %} {% endset %} <div class="tm-flipster-item jl-width-{{particle.grid_width}}{% if item.item_class %} {{ item.item_class }}{% endif %}"> {% if particle.image_alignment == 'top' or particle.image_alignment == 'bottom' or particle.image_alignment == 'between' %} {# Default Style #} {% if particle.style == 'blank' %} {# Card Blank #} <div class="jl-panel jl-margin-remove-first-child"> {% if particle.image_alignment == 'top' %} {{item_image}} {% endif %} {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if particle.image_alignment == 'between' %} {{item_image}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} {% if particle.image_alignment == 'bottom' %} {{item_image}} {% endif %} </div> {# End Card Blank #} {% else %} {# Card styles #} {% if particle.image_padding == '1' %} <div class="jl-card jl-card-{{ particle.style }}{% if particle.cardsize != 'default' %} jl-card-{{ particle.cardsize }}{% endif %}"> {% if particle.image_alignment == 'top' %} <div class="jl-card-media-top"> {{item_image}} </div> {% endif %} {% if item.title or item.meta or item.content or item.buttontext %} <div class="jl-card-body jl-margin-remove-first-child"> {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if particle.image_alignment == 'between' %} {{item_image}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} </div> {% endif %} {% if particle.image_alignment == 'bottom' %} {{item_image}} {% endif %} {% else %} <div class="jl-card jl-card-{{ particle.style }} jl-card-body{% if particle.cardsize == 'default' %}{% else %} jl-card-{{ particle.cardsize }}{% endif %} jl-margin-remove-first-child"> {% if particle.image_alignment == 'top' %} {{item_image}} {% endif %} {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if particle.image_alignment == 'between' %} {{item_image}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} {% if particle.image_alignment == 'between' %} {{item_image}} {% endif %} {% endif %} </div> {# End card style #} {% endif %} {# End Default Style #} {% else %} {# Grid Style #} {% if particle.style == 'blank' %} {# Card Blank #} <div class="jl-panel jl-margin-remove-first-child"> <div class="jl-child-width-expand{% if particle.image_grid_gutter != 'default' %} jl-grid-{{ particle.image_grid_gutter|e }}{% endif %}{{ particle.image_vertical_alignment ? ' jl-flex-middle' : '' }}" jl-grid> {% if item.image %} <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 %}"> <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> </div> {% endif %} <div> {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} </div> </div> </div> {# End Card Blank #} {% else %} {# Card styles #} {% if particle.image_padding == '1' %} <div class="jl-card jl-card-{{ particle.style }}{% if particle.cardsize != 'default' %} jl-card-{{ particle.cardsize }}{% endif %}"> {% if particle.image_padding == '1' %} <div class="jl-child-width-expand jl-grid-collapse jl-grid-match{{ particle.image_vertical_alignment ? ' jl-flex-middle' : '' }}" jl-grid> {% else %} <div class="jl-child-width-expand{% if particle.image_grid_gutter != 'default' %} jl-grid-{{ particle.image_grid_gutter|e }}{% endif %}{{ particle.image_vertical_alignment ? ' jl-flex-middle' : '' }}" jl-grid> {% endif %} {% if item.image %} <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="jl-cover-container{% if particle.image_alignment == 'right' %} jl-card-media-right{% else %} jl-card-media-left{% endif %}"> {% if particle.style == 'blank' %} <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% else %} {% if particle.image_padding == '1' %} <img class="tm-image{{image_border_cls}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %} jl-cover> <img{{imagewidth|raw}}{{imageheight|raw}} class="tm-image jl-invisible{{image_border_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}" src="{{ url(item.image)|e }}"{% if item.image_alt %} alt="{{item.image_alt|e}}"{% endif %}> {% else %} {{item_image}} {% endif %} {% endif %} </div> </div> {% endif %} <div> <div class="jl-card-body jl-margin-remove-first-child"> {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} </div> </div> </div> {% else %} <div class="jl-card jl-card-{{ particle.style }} jl-card-body{% if particle.cardsize != 'default' %} jl-card-{{ particle.cardsize }}{% endif %}"> <div class="jl-child-width-expand{% if particle.image_grid_gutter != 'default' %} jl-grid-{{ particle.image_grid_gutter|e }}{% endif %}{{ particle.image_vertical_alignment ? ' jl-flex-middle' : '' }}" jl-grid> {% if item.image %} <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 %}"> {{item_image}} </div> {% endif %} <div class="jl-margin-remove-first-child"> {% if particle.meta_alignment == 'top' %} {{item_meta}} {% endif %} {{item_title}} {% if particle.meta_alignment == 'bottom' %} {{item_meta}} {% endif %} {% if item.content %} <div class="tm-content jl-panel{{content_text_transform}}{% 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.content|raw }}</div> {% endif %} {% if particle.meta_alignment == 'content' %} {{item_meta}} {% endif %} {{item_button}} </div> </div> {% endif %} </div> {# End card style #} {% endif %} {# End Grid style #} {% endif %} </div> {% endfor %} {% endset %} {# End Grid content #} {% block particle %} {% if particle.enabled %} {{parallaxbackground}} {{particle_title_style}} <div id="{{ id }}" class="tm-flipster-{{rand}} 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 %}"{{animation}}> <div class="tm-flipster-container"> {{grid_content}} </div> </div> {{endparallaxbackground}} {% endif %} {% endblock %}
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.13 |
proxy
|
phpinfo
|
Настройка