Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/j3/templates/g5_hydrogen/custom/particles/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/j3/templates/g5_hydrogen/custom/particles/jllightgallery.html.twig

{% extends '@nucleus/partials/particle.html.twig' %}

{% block stylesheets %}
<link rel="stylesheet" href="{{
url('gantry-theme://css/lightgallery.min.css') }}"
type="text/css" />
{% if particle.comment %}
<link rel="stylesheet" href="{{
url('gantry-theme://css/lg-fb-comment-box.min.css') }}"
type="text/css" />
{% endif %}
{% if particle.gallery_animation != 'lg-slide' or
particle.gallery_animation != 'lg-fade' %}
<link rel="stylesheet" href="{{
url('gantry-theme://css/lg-transitions.min.css') }}"
type="text/css" />
{% endif %}
{% if particle.particle_title_color or particle.particle_title_fontsize or
particle.title_color or particle.title_fontsize or
particle.customize_content_color or particle.customize_content_fontsize or
particle.meta_color or particle.meta_fontsize or particle.grid_parallax !=
'' %}
<style>
{% if particle.grid_parallax and particle.grid_masonry
%}#{{id}}-particle{box-sizing: content-box;}{% endif %}
{% 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.title_color or particle.title_fontsize %}
#{{ id }} .tm-title { {% if particle.title_color %}color:
{{particle.title_color}}; {% endif %}{% if particle.title_fontsize
%}font-size: {{particle.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 gantry.page.direction == 'rtl' %}
.lg-outer {direction: ltr;}
{% endif %}
</style>
{% endif %}
{% endblock %}

{% block javascript_footer %}
{% do gantry.load('jquery') %}
<script src="{{ url('gantry-theme://js/lightgallery.js')
}}"></script>
{# Load Lightgallery Modules If Needed #}
{% if particle.enable_hash %}
<script src="{{ url('gantry-theme://js/lg-hash.min.js')
}}"></script>
{% endif %}
{% if particle.enable_autoplay %}
<script src="{{
url('gantry-theme://js/lg-autoplay.min.js')
}}"></script>
{% endif %}
{% if particle.show_fullscreen %}
<script src="{{
url('gantry-theme://js/lg-fullscreen.min.js')
}}"></script>
{% endif %}
{% if particle.show_zoom %}
<script src="{{ url('gantry-theme://js/lg-zoom.min.js')
}}"></script>
{% endif %}
{% if particle.show_share %}
<script src="{{ url('gantry-theme://js/lg-share.min.js')
}}"></script>
{% endif %}
{% if particle.show_thumb %}
<script src="{{
url('gantry-theme://js/lg-thumbnail.min.js')
}}"></script>
{% endif %}
{% if particle.comment %}
<script>
(function(d, s, id) {
  var js,
  fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id))
  return;
  js = d.createElement(s);
  js.id = id;
  js.src =
"//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
{% endif %}
{% 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 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 Section #}
{% set container_maxwidth %}
{% if particle.container_maxwidth == 'default' %}jl-container{%
else %}jl-container jl-container-{{particle.container_maxwidth|e}}{% endif
%}
{% endset %}

{# 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 Masonry #}
{% set grid_masonry = particle.grid_masonry ? 'masonry: 1;' %}

{# Set Parallax #}
{% set grid_parallax = particle.grid_parallax ? 'parallax: ' ~
particle.grid_parallax ~ ';' %}

{# Set LG Control #}
{% set lg_control %}
{% if particle.show_share %}share: true,{% endif %}
{% if particle.show_counter %}counter: true,{% endif %}
{% if particle.show_download %}download: true,{% endif %}
{% if particle.show_zoom %}zoom: true,{% endif %}
{% if not particle.enable_drag %}enableDrag: false,{% endif %}
{% if particle.enable_autoplay %}autoplay: true,{% endif %}
{% if particle.show_thumb %}thumbnail: true,{% endif %}
{% endset %}

{# Set Transition for title/meta/content if overlay on hover is set #}
{% if particle.overlay_hover %}
{% set title_transition = particle.title_transition != 'none' ?
' jl-transition-' ~ particle.title_transition|e ~ '' %}
{% set meta_transition = particle.meta_transition != 'none' ?
' jl-transition-' ~ particle.meta_transition|e ~ '' %}
{% set content_transition = particle.content_transition != 'none'
? ' jl-transition-' ~ particle.content_transition|e ~
'' %}
{% set link_transition = particle.link_transition != 'none' ?
' jl-transition-' ~ particle.link_transition|e ~ '' %}
{% endif %}

{# Overlay Transition #}
{% set overlay_transition = particle.overlay_hover ? '
jl-transition-' ~ particle.overlay_transition|e ~ '' %}
{# Image Transition #}
{% set image_transition = particle.image_transition != 'none' ?
' jl-transition-' ~ particle.image_transition|e ~ '
jl-transition-opaque' %}

{# 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 Max Width Class #}
{% set item_maxwidth_cls = particle.item_maxwidth != 'none' ?
' jl-margin-auto jl-width-' ~ particle.item_maxwidth|e ~
'' %}

{# Set Content #}
{% set gallery_content %}
{% for item in particle.images %}

{% set overlay_color %}
{% if item.item_color %} jl-{{ item.item_color|e }}{% else %}{% if
particle.overlay_color %} jl-{{ particle.overlay_color|e }}{% endif %}{%
endif %}
{% endset %}

{# Set Meta Content #}
{% 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' %}{% else %} jl-text-{{
particle.pre_meta_color|e }}{% endif %}{% if particle.meta_style !=
'default' %} jl-{{ particle.meta_style|e }}{% endif
%}{{meta_transition}}">
  {{item.meta|raw}}
</div>
{% endif %}
{% endset %}

{% if particle.show_first_item == '1' %}

{% if loop.first %}
<div>
{% else %}
<div class="jl-hidden">
{% endif %}

{% else %}
<div>
{% endif %}

{% if particle.comment %}
{% set url = gantry.page.url %}
{% set mods = particle.mod | split(' ') %}
<a class="jl-inline-clip jl-transition-toggle jl-link-toggle"
href="{{url(item.image)}}" data-sub-html='<div
class="fb-comments" data-href="{{url ~
url(item.image)}}" data-width="400"
data-numposts="5"></div>'
tabindex="0"{{scrollspy_cls}}>

{% else %}
<a class="jl-inline-clip jl-transition-toggle jl-link-toggle"
href="{{url(item.image)}}"
data-sub-html='<h4>{{item.title|e}}</h4><p>{{item.desc|e}}</p>'
tabindex="0"{{scrollspy_cls}}>

{% endif %}

<div class="tm-item{% if item.item_class %} {{ item.item_class }}{%
endif
%}{{item_maxwidth_cls}}{{image_boxshadow}}{{image_boxshadow_hover}}"{{scrollspy_cls}}>

{% if item.image_thumbnail %}
<img class="tm-image{{image_transition}}" src="{{
url(item.image_thumbnail)|e }}" alt="{{ item.image_alt|e
}}">
{% else %}
<img class="tm-image{{image_transition}}" src="{{
url(item.image)|e }}"{% if item.image_alt %}
alt="{{item.image_alt|e}}"{% endif %}>
{% endif %}

{# Load Overlay Style #}
{% if particle.overlay_style == 'none' %}
<div class="{% if particle.overlay_position %}jl-position-{{
particle.overlay_position|e }}{% endif %}">

<div class="jl-panel{{overlay_color}}{% if particle.overlay_padding
== 'default' %} jl-padding{% else %} jl-padding-{{
particle.overlay_padding|e }}{% endif %}{% if particle.overlay_maxwidth !=
'none' %} jl-width-{{ particle.overlay_maxwidth|e }}{% endif
%}{{overlay_transition}} jl-margin-remove-first-child">

{% else %}

{% if particle.overlay_mode == 'cover' %}
<div class="jl-position-cover{% if particle.overlay_margin !=
'none' %} jl-position-{{ particle.overlay_margin|e }}{% endif
%}{% if particle.overlay_style %} {{ particle.overlay_style|e }}{% endif
%}{{overlay_transition}}"></div>
{% endif %}

<div class="{% if particle.overlay_position %}jl-position-{{
particle.overlay_position|e }}{% endif %}{% if particle.overlay_margin !=
'none' %} jl-position-{{ particle.overlay_margin|e }}{% endif
%}">

{% if particle.overlay_mode == 'cover' %}
<div class="jl-overlay{{overlay_color}}{% if
particle.overlay_padding != 'default' %} jl-padding-{{
particle.overlay_padding|e }}{% endif %}{% if particle.overlay_maxwidth !=
'none' %} jl-width-{{ particle.overlay_maxwidth|e }}{% endif %}{%
if particle.animate_background == false %}{{overlay_transition}}{% endif %}
jl-margin-remove-first-child">
{% else %}
<div class="jl-overlay{{overlay_color}}{% if
particle.overlay_padding != 'default' %} jl-padding-{{
particle.overlay_padding|e }}{% endif %}{% if particle.overlay_maxwidth !=
'none' %} jl-width-{{ particle.overlay_maxwidth|e }}{% endif %}{%
if particle.overlay_style %} {{ particle.overlay_style|e }}{% endif
%}{{overlay_transition}} jl-margin-remove-first-child">
{% endif %}

{% endif %}

{% if particle.meta_alignment == 'top' %}
  {{item_meta}}
{% 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_style != 'default' %} jl-{{ particle.title_style|e
}}{% endif %}{% if particle.predefined_title_color != 'default'
%} jl-text-{{ particle.predefined_title_color|e }}{% endif %}{% if
particle.title_decoration != 'none' %}
jl-heading-{{particle.title_decoration|e}}{% endif
%}{{title_transition}}">
{% if particle.title_decoration == 'line' %} <span>{{
item.title|raw }}</span>
{% else %}
{{ item.title|raw }}
{% endif %}
</{{particle.title_element|e}}>
{% endif %}

{% if particle.meta_alignment == 'bottom' %}
  {{item_meta}}
{% endif %}

{% if item.desc %}
<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
%}{{content_transition}}">
  {{item.desc|raw}}
</div>
{% endif %}

{% if particle.meta_alignment == 'content' %}
  {{item_meta}}
{% endif %}

</div>
</div>
{# End Overlay Style #}

</div>

</a>
</div>
{% 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.comment %}
{% pageblock body_top %}
<div id="fb-root"></div>
{% endpageblock %}
{% endif %}
<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 %}"{{animation}}>
<div id="lg-{{id}}" class="{{ particle.grid_divider ?
'jl-grid-divider' : ''
}}{{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 %}"
jl-grid="{{grid_masonry}}{{grid_parallax}}">
  {{gallery_content}}
</div>
</div>
{{endparallaxbackground}}
{% endif %}
{% endblock %}

{% set inline_js %}
jQuery( document ).ready(function( $ ) {
  var $lg = $('#lg-{{id}}');
  {% if particle.comment %}
  $lg.lightGallery({selector: 'a',
  mode: '{{particle.gallery_animation|e}}',
  {% if particle.lg_width %}
  addClass: 'fixed-size',
  width: '{{particle.lg_width|default('700')|e}}px',
  height: '{{particle.lg_height|default('470')|e}}px',
  {% endif %}
  addClass: 'fb-comments',
  {{lg_control}}
  galleryId: {{particle.lg_id|default('1')|e}}
});
$lg.on('onAfterAppendSubHtml.lg', function() {
  try {
    FB.XFBML.parse();
  } catch (err) {
    $(window).on('fbAsyncInit', function() {
      FB.XFBML.parse();
    });
  }
});
{% else %}
$lg.lightGallery({selector: 'a',
  {{lg_control}}
  galleryId: {{particle.lg_id|default('1')|e}},
  mode: '{{particle.gallery_animation|e}}',
{% if particle.lg_width %}
  addClass: 'fixed-size',
  width: '{{particle.lg_width|default('700')|e}}px',
  height: '{{particle.lg_height|default('470')|e}}px',
{% endif %}
});
{% endif %}
});
{% endset %}

{% do gantry.document.addInlineScript( inline_js, 10, 'footer')
%}