The Gallery block is an alternative to the WordPress core Gallery block.
The main advantage of the ska/gallery block is that it can render an image gallery with a simple and predictable markup: .wp-block-ska-gallery > .image > img. It is a singular block that renders images from a list of WordPress attachment IDs, as opposed to the core gallery block which contains individual image blocks as children – there are pros and cons to both.
When disabling the Wrap option, the gallery will not render any parent element, only .image > img elements. This makes it possible to use the Gallery block inside the Slider block for example, making each image a separate slide.
Basic gallery
Images: https://picsum.photos
You should give the gallery basic Tailwind classes such as grid grid-cols-2 sm:grid-cols-3 gap-3.5 to configure its’ appearance.
<!-- wp:ska/gallery {"ids":[260,261,262,263,257,264,265,266,267],"role":"presentation","size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"grid grid-cols-2 sm:grid-cols-3 gap-3.5","css":".grid{display:grid}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}@media (min-width:40rem){.sm\\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}.gap-3\\.5{gap:var(--spacing-3_5)}","t":1758876679},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"2"},"sm":{"@":"3"}}},"skaBlocksGap":{"v":{"$":{"@":"3.5"}}}} -->
<div class="grid grid-cols-2 sm:grid-cols-3 gap-3.5 wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->Gallery images can be targeted with the selector [&>.image] (or direct child selector: *). The .image is a wrapper element and contains the <img> element inside of it.
When enabling the “Cover” option the <img> elements automatically receive the Tailwind classes w-full h-full object-cover rounded-[inherit] aspect-[inherit], ensuring that all images fit their wrapper element rather than letterboxing. You can then give the .image elements a size (e.g. size-44) or an aspect ratio (e.g. aspect-square) or both.
The gallery images should have an alt-text assigned to them in the WordPress Media Library – alternatively you can change the “Role” option to “Presentation” to hide the images from screen readers.
Logos with individual links
Images: https://logoipsum.com
<!-- wp:ska/gallery {"ids":[270,272,276,277,271,275,273,274],"linkTo":"list","links":"#logo-1-link\n#logo-2-link\n#logo-3-link\n#logo-4-link\n#logo-5-link\n#logo-6-link\n#logo-7-link\n#logo-8-link","skaBlocks":{"cx":"grid grid-cols-2 lg:grid-cols-4 gap-4 gap-x-6 gap-y-12 place-items-center","css":".grid{display:grid}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}@media (min-width:64rem){.lg\\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.gap-4{gap:var(--spacing-4)}.gap-x-6{column-gap:var(--spacing-6)}.gap-y-12{row-gap:var(--spacing-12)}.place-items-center{place-items:center}","t":1758876679},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"2"},"lg":{"@":"4"}}},"skaBlocksGap":{"v":{"$":{"@":"4","column":"6","row":"12"}}},"skaBlocksPlaceItems":{"v":{"$":{"@":"center"}}}} -->
<div class="grid grid-cols-2 lg:grid-cols-4 gap-4 gap-x-6 gap-y-12 place-items-center wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->When changing the gallery block’s “Link to” option to “Custom links” you are presented with a textarea to which you can enter links for the gallery images. Each line corresponds to a gallery image in order. Optionally you can also add an aria-label to the link by appending the | character and writing the text after that. Links that start with @ are opened in a new tab.
https://google.com|Go to Google
https://bing.com|Visit Bing
@https://duckduckgo.com|Open DDG in a new tabSynergies
Slider
The Gallery block can be used inside the Slider block, allowing the gallery images to become slides. In this case you should disable the “Wrap” option, otherwise the whole gallery is a single slide.
When a gallery is inside the slider, you shouldn’t add Tailwind classes the the Gallery block (as the wrapper won’t be rendered), but instead add them to the Slider block, targeting either swiper-slide (custom variant for [&_.swiper-slide]) or [&_.image], both of which target the same element – .swiper-slide.image. You can, how ever, still add Tailwind classes to the Gallery to control how it appears in the editor, e.g. grid grid-cols-auto-fit-xs gap-3.
Lightbox
The Lightbox block can contain any amount of Gallery blocks as well as other Image blocks to create a singular lightbox for all the contained images. When the gallery is inside the lightbox block, you should not enable the “Lightbox” option on the gallery, but instead simply change the “Link to” option to “Full Size” or some other image size that you wish to use for the lightbox.
Examples
When copy-pasting an example to your block editor, the Gallery images with the same ID-s may not exist, or be different images as in the examples – select the Gallery block and click on “Clear” on the block toolbar, and then add your own images to the gallery.
Image zoom on hover
<!-- wp:ska/gallery {"ids":[263,257,264,265,266,267],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"*:aspect-square grid *:overflow-hidden grid-cols-2 sm:grid-cols-auto-fit-xs gap-3.5 *:rounded *:*:transition-transform *:*:duration-500 *:*:scale-101 *:hover:*:scale-110","css":":is(.\\*\\:aspect-square\u003e*){aspect-ratio:1}.grid{display:grid}:is(.\\*\\:overflow-hidden\u003e*){overflow:hidden}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}@media (min-width:40rem){.sm\\:grid-cols-auto-fit-xs{grid-template-columns:repeat(auto-fit,minmax(min(var(--spacing-48),100%),1fr))}}.gap-3\\.5{gap:var(--spacing-3_5)}:is(.\\*\\:rounded\u003e*){border-radius:var(--radius)}:is(:is(.\\*\\:\\*\\:transition-transform\u003e*)\u003e*){transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}:is(:is(.\\*\\:\\*\\:duration-500\u003e*)\u003e*){--tw-duration:.5s;transition-duration:.5s}:is(:is(.\\*\\:\\*\\:scale-101\u003e*)\u003e*){--tw-scale-x:101%;--tw-scale-y:101%;--tw-scale-z:101%;scale:var(--tw-scale-x)var(--tw-scale-y)}@media (hover:hover){:is(:is(.\\*\\:hover\\:\\*\\:scale-110\u003e*):hover\u003e*){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}}","t":1758876679},"skaBlocksSelectors":{"*":{"skaBlocksAspectRatio":{"v":{"$":{"@":"square"}}},"skaBlocksBorderRadius":{"v":{"$":{"@":"DEFAULT"}}},"skaBlocksSelectors":{"*":{"skaBlocksScale":{"v":{"$":{"@":"101"},"\u003chover":{"@":"110"}},"a":["101"]},"skaBlocksTransitionProperty":{"v":{"$":{"@":"transform"}}},"skaBlocksTransitionDuration":{"v":{"$":{"@":"500"}}}}},"skaBlocksOverflow":{"v":{"$":{"@":"hidden"}}}}},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"2"},"sm":{"@":"auto-fit-xs"}}},"skaBlocksGap":{"v":{"$":{"@":"3.5"}}}} -->
<div class="*:aspect-square grid *:overflow-hidden grid-cols-2 sm:grid-cols-auto-fit-xs gap-3.5 *:rounded *:*:transition-transform *:*:duration-500 *:*:scale-101 *:hover:*:scale-110 wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->Native horizontally scrollable gallery
<!-- wp:ska/gallery {"ids":[260,261,262,263,257,264,265,266,267],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"[\u0026\u003e.image]:aspect-video flex overflow-x-auto gap-2.5 pb-2 [\u0026\u003e.image]:min-w-80 scroll-smooth *:snap-center snap-x snap-mandatory","css":".\\[\\\u0026\\\u003e\\.image\\]\\:aspect-video\u003e.image{aspect-ratio:var(--aspect-video)}.flex{display:flex}.overflow-x-auto{overflow-x:auto}.gap-2\\.5{gap:var(--spacing-2_5)}.pb-2{padding-bottom:var(--spacing-2)}.\\[\\\u0026\\\u003e\\.image\\]\\:min-w-80\u003e.image{min-width:var(--spacing-80)}.scroll-smooth{scroll-behavior:smooth}:is(.\\*\\:snap-center\u003e*){scroll-snap-align:center}.snap-x{scroll-snap-type:x var(--tw-scroll-snap-strictness)}.snap-mandatory{--tw-scroll-snap-strictness:mandatory}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":{"skaBlocksMinWidth":{"v":{"$":{"@":"80"}}},"skaBlocksAspectRatio":{"v":{"$":{"@":"video"}}}}},"skaBlocksDisplay":{"v":{"$":{"@":"flex"}}},"skaBlocksOverflow":{"v":{"$":{"@":"","x":"auto"}}},"skaBlocksGap":{"v":{"$":{"@":"2.5"}}},"skaBlocksPadding":{"v":{"$":{"@":"","b":"2"}},"t":"sides"},"skaBlocksScrollBehavior":{"v":{"$":{"@":"smooth"}}},"skaBlocksScrollSnapAlign":{"v":{"$":{"@":""},"*":{"@":"center"}}},"skaBlocksScrollSnapType":{"v":{"$":{"@":"x"}}},"skaBlocksScrollSnapStrictness":{"v":{"$":{"@":"mandatory"}}}} -->
<div class="[&>.image]:aspect-video flex overflow-x-auto gap-2.5 pb-2 [&>.image]:min-w-80 scroll-smooth *:snap-center snap-x snap-mandatory wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->First image col/row span
<!-- wp:ska/gallery {"ids":[265,261,263,262,257,264,267],"role":"presentation","cover":true,"size":"large","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"[\u0026\u003e.image]:first:aspect-square grid grid-cols-3 [\u0026\u003e.image]:first:col-span-2 [\u0026\u003e.image]:first:row-span-3 gap-1.5 [\u0026\u003e.image]:size-full","css":".\\[\\\u0026\\\u003e\\.image\\]\\:first\\:aspect-square\u003e.image:first-child{aspect-ratio:1}.grid{display:grid}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.\\[\\\u0026\\\u003e\\.image\\]\\:first\\:col-span-2\u003e.image:first-child{grid-column:span 2/span 2}.\\[\\\u0026\\\u003e\\.image\\]\\:first\\:row-span-3\u003e.image:first-child{grid-row:span 3/span 3}.gap-1\\.5{gap:var(--spacing-1_5)}.\\[\\\u0026\\\u003e\\.image\\]\\:size-full\u003e.image{width:100%;height:100%}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":{"skaBlocksSelectors":{"first":{"skaBlocksGridColumn":{"v":{"$":{"@":"span-2"}}},"skaBlocksGridRow":{"v":{"$":{"@":"span-3"}}},"skaBlocksAspectRatio":{"v":{"$":{"@":"square"}}}}},"skaBlocksSize":{"v":{"$":{"@":"full"}}}}},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"3"}}},"skaBlocksGap":{"v":{"$":{"@":"1.5"}}}} -->
<div class="[&>.image]:first:aspect-square grid grid-cols-3 [&>.image]:first:col-span-2 [&>.image]:first:row-span-3 gap-1.5 [&>.image]:size-full wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->Grayscale, row-spanning first and last images
<!-- wp:ska/gallery {"ids":[261,263,262,266],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"grid grid-cols-3 [\u0026\u003e.image]:last:col-start-3 [\u0026\u003e.image]:first:row-start-1 [\u0026\u003e.image]:first:row-end-3 [\u0026\u003e.image]:last:row-start-1 [\u0026\u003e.image]:last:row-end-3 gap-2 sm:gap-4 [\u0026\u003e.image]:sm:min-h-36 [\u0026\u003e.image]:size-full [\u0026\u003e.image]:grayscale [\u0026\u003e.image]:hover:grayscale-0 [\u0026\u003e.image]:transition-[filter] [\u0026\u003e.image]:duration-500","css":".grid{display:grid}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.\\[\\\u0026\\\u003e\\.image\\]\\:last\\:col-start-3\u003e.image:last-child{grid-column-start:3}.\\[\\\u0026\\\u003e\\.image\\]\\:first\\:row-start-1\u003e.image:first-child{grid-row-start:1}.\\[\\\u0026\\\u003e\\.image\\]\\:first\\:row-end-3\u003e.image:first-child{grid-row-end:3}.\\[\\\u0026\\\u003e\\.image\\]\\:last\\:row-start-1\u003e.image:last-child{grid-row-start:1}.\\[\\\u0026\\\u003e\\.image\\]\\:last\\:row-end-3\u003e.image:last-child{grid-row-end:3}.gap-2{gap:var(--spacing-2)}@media (min-width:40rem){.sm\\:gap-4{gap:var(--spacing-4)}}@media (min-width:40rem){.\\[\\\u0026\\\u003e\\.image\\]\\:sm\\:min-h-36\u003e.image{min-height:var(--spacing-36)}}.\\[\\\u0026\\\u003e\\.image\\]\\:size-full\u003e.image{width:100%;height:100%}.\\[\\\u0026\\\u003e\\.image\\]\\:grayscale\u003e.image{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}@media (hover:hover){.\\[\\\u0026\\\u003e\\.image\\]\\:hover\\:grayscale-0\u003e.image:hover{--tw-grayscale:grayscale(0%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.\\[\\\u0026\\\u003e\\.image\\]\\:transition-\\[filter\\]\u003e.image{transition-property:filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.\\[\\\u0026\\\u003e\\.image\\]\\:duration-500\u003e.image{--tw-duration:.5s;transition-duration:.5s}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":{"skaBlocksSelectors":{"first":{"skaBlocksGridRowStartEnd":{"v":{"$":{"@":"","start":"1","end":"3"}}}},"last":{"skaBlocksGridRowStartEnd":{"v":{"$":{"@":"","start":"1","end":"3"}}},"skaBlocksGridColumnStartEnd":{"v":{"$":{"@":"","start":"3"}}}}},"skaBlocksSize":{"v":{"$":{"@":"full"}}},"skaBlocksMinHeight":{"v":{"$":{"@":""},"sm":{"@":"36"}}},"skaBlocksGrayscale":{"v":{"$":{"@":"DEFAULT"},"hover":{"@":"0"}}},"skaBlocksTransitionProperty":{"v":{"$":{"@":"[filter]"}},"a":["[filter]"]},"skaBlocksTransitionDuration":{"v":{"$":{"@":"500"}}}}},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"3"}}},"skaBlocksGap":{"v":{"$":{"@":"2"},"sm":{"@":"4"}}}} -->
<div class="grid grid-cols-3 [&>.image]:last:col-start-3 [&>.image]:first:row-start-1 [&>.image]:first:row-end-3 [&>.image]:last:row-start-1 [&>.image]:last:row-end-3 gap-2 sm:gap-4 [&>.image]:sm:min-h-36 [&>.image]:size-full [&>.image]:grayscale [&>.image]:hover:grayscale-0 [&>.image]:transition-[filter] [&>.image]:duration-500 wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->Masonry with multiple galleries
Note: works best with images that have different aspect ratios – remove the aspect-* classes from the galleries and use w-full h-auto instead.
<!-- wp:ska/element {"skaBlocks":{"cx":"flex gap-3","css":".flex{display:flex}.gap-3{gap:var(--spacing-3)}","t":1758876679},"skaBlocksDisplay":{"v":{"$":{"@":"flex"}}},"skaBlocksGap":{"v":{"$":{"@":"3"}}}} -->
<div class="flex gap-3 wp-block-ska-element">
<!-- wp:ska/gallery {"ids":[263,257,264,265,267],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"flex flex-col gap-[inherit]","css":".flex{display:flex}.flex-col{flex-direction:column}.gap-\\[inherit\\]{gap:inherit}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":[]},"skaBlocksDisplay":{"v":{"$":{"@":"flex"}}},"skaBlocksFlexDirection":{"v":{"$":{"@":"col"}}},"skaBlocksGap":{"v":{"$":{"@":"[inherit]"}},"a":["[inherit]"]}} -->
<div class="flex flex-col gap-[inherit] wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->
<!-- wp:ska/gallery {"ids":[260,265,261,262,263],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"flex flex-col gap-[inherit]","css":".flex{display:flex}.flex-col{flex-direction:column}.gap-\\[inherit\\]{gap:inherit}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":[]},"skaBlocksDisplay":{"v":{"$":{"@":"flex"}}},"skaBlocksFlexDirection":{"v":{"$":{"@":"col"}}},"skaBlocksGap":{"v":{"$":{"@":"[inherit]"}},"a":["[inherit]"]}} -->
<div class="flex flex-col gap-[inherit] wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->
<!-- wp:ska/gallery {"ids":[264,266,257,267,261],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"flex flex-col gap-[inherit]","css":".flex{display:flex}.flex-col{flex-direction:column}.gap-\\[inherit\\]{gap:inherit}","t":1758876679},"skaBlocksSelectors":{"[\u0026\u003e.image]":[]},"skaBlocksDisplay":{"v":{"$":{"@":"flex"}}},"skaBlocksFlexDirection":{"v":{"$":{"@":"col"}}},"skaBlocksGap":{"v":{"$":{"@":"[inherit]"}},"a":["[inherit]"]}} -->
<div class="flex flex-col gap-[inherit] wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->
</div>
<!-- /wp:ska/element -->Masonry with columns-n
<!-- wp:ska/gallery {"ids":[263,257,264,265,266,267,262,261,260],"role":"presentation","cover":true,"size":"medium","linkTo":"full","lightbox":true,"skaBlocks":{"cx":"columns-2 sm:columns-3 [\u0026\u003e.image]:block -mb-4 *:mb-4","css":".columns-2{columns:2}@media (min-width:40rem){.sm\\:columns-3{columns:3}}.\\[\\\u0026\\\u003e\\.image\\]\\:block\u003e.image{display:block}.-mb-4{margin-bottom:calc(var(--spacing-4)*-1)}:is(.\\*\\:mb-4\u003e*){margin-bottom:var(--spacing-4)}","t":1758876679},"skaBlocksSelectors":[],"skaBlocksColumns":{"v":{"$":{"@":"2"},"sm":{"@":"3"}}},"skaBlocksDisplay":{"v":{"$":{"@":""},"[\u0026\u003e.image]":{"@":"block"}}},"skaBlocksMargin":{"v":{"$":{"@":"","b":"-4"},"*":{"b":"4"}},"t":"sides"}} -->
<div class="columns-2 sm:columns-3 [&>.image]:block -mb-4 *:mb-4 wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->Slider cards
<!-- wp:ska/lightbox {"skaBlocks":{"cx":"mx-auto my-gutter max-w-[min(var(--container-sm),_56vw)]","css":".mx-auto{margin-inline:auto}.my-gutter{margin-block:var(--gutter)}.max-w-\\[min\\(var\\(--container-sm\\)\\,_56vw\\)\\]{max-width:min(var(--container-sm),56vw)}","t":1758876679},"skaBlocksAppender":{"type":"hidden"},"skaBlocksMargin":{"v":{"$":{"@":"","x":"auto","y":"gutter"}},"t":"axis"},"skaBlocksMaxWidth":{"v":{"$":{"@":"[min(var(--container-sm),_56vw)]"}},"a":["[min(var(--container-sm),_56vw)]"]}} -->
<div class="mx-auto my-gutter max-w-[min(var(--container-sm),_56vw)] wp-block-ska-lightbox">
<!-- wp:ska/slider {"speed":700,"grabCursor":true,"config":"{\n\teffect: 'cards',\n\tcardsEffect: {\n\t\tslideShadows: false,\n\t},\n\ta11y: {\n\t\tenabled: false,\n\t},\n}","skaBlocks":{"cx":"[\u0026_.image]:aspect-square [\u0026_.image]:overflow-hidden [\u0026_.image]:rounded-2xl","css":".\\[\\\u0026_\\.image\\]\\:aspect-square .image{aspect-ratio:1}.\\[\\\u0026_\\.image\\]\\:overflow-hidden .image{overflow:hidden}.\\[\\\u0026_\\.image\\]\\:rounded-2xl .image{border-radius:var(--radius-2xl)}","t":1758876679,"p":[{"id":"ska-theme--swiper","isStatic":true}]},"skaBlocksAppender":{"type":"hidden"},"skaBlocksSelectors":{"[\u0026_.image]":{"skaBlocksAspectRatio":{"v":{"$":{"@":"square"}}},"skaBlocksSelectors":[],"skaBlocksBorderRadius":{"v":{"$":{"@":"2xl"}}},"skaBlocksOverflow":{"v":{"$":{"@":"hidden"}}}}}} -->
<div class="swiper [&_.image]:aspect-square [&_.image]:overflow-hidden [&_.image]:rounded-2xl wp-block-ska-slider" data-ska-swiper="{{ska-slider-id}}"><div class="swiper-wrapper">
<!-- wp:ska/gallery {"ids":[257,260,261,262,263,264,265,266,267],"cover":true,"size":"large","linkTo":"full","srcset":false,"lazyload":true,"wrap":false,"skaBlocks":{"cx":"grid grid-cols-3 gap-2","css":".grid{display:grid}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.gap-2{gap:var(--spacing-2)}","t":1758876679},"skaBlocksDisplay":{"v":{"$":{"@":"grid"}}},"skaBlocksGridTemplateColumns":{"v":{"$":{"@":"3"}}},"skaBlocksGap":{"v":{"$":{"@":"2"}}}} -->
<div class="grid grid-cols-3 gap-2 wp-block-ska-gallery"><span class="ska-gallery-content-placeholder"></span></div>
<!-- /wp:ska/gallery -->
</div><div class="swiper-button-prev ska-swiper-nav__button"></div><div class="swiper-button-next ska-swiper-nav__button"></div></div>
<!-- /wp:ska/slider -->
</div>
<!-- /wp:ska/lightbox -->
















