2026-02-05 17:08:59 +03:00

33 lines
715 B
PHP

<?php
/**
* Underscore.js template
*
* @package fusion-builder
* @since 2.0
*/
?>
<script type="text/html" id="tmpl-fusion_tb_related-shortcode">
<section {{{ _.fusionGetAttributes( attr ) }}}>
{{{ titleElement }}}
<#
// If Query Data is set, use it and continue. If not, echo HTML.
if ( 'undefined' !== typeof query_data && 'undefined' !== typeof query_data.related_items ) {
#>
<div {{{ _.fusionGetAttributes( carouselAttrs ) }}}>
<div class="swiper-wrapper">
{{{ relatedCarousel }}}
</div>
{{{ carouselNav }}}
</div>
<#
} else if ( 'undefined' !== typeof query_data && 'undefined' !== typeof query_data.placeholder ) {
#>
{{{ query_data.placeholder }}}
<# } #>
</section>
</script>