<?php // load presets css
$GLOBALS['TL_CSS'][] = $GLOBALS['PCT_AUTOGRID']['presets_css'].'|static';
?>

<?php if($this->AutoGrid->start): ?>
<div class="placeholder" data-id="<?= $this->id; ?>"></div>
<div <?php if($this->AutoGrid->hasCustomGrid): ?>id="<?= 'custom_grid_'.$this->id; ?>"<?php endif;?> class="autogrid_grid grid_<?= $this->AutoGrid->preset; ?> <?= $this->AutoGrid->desktop; ?>" data-id="<?= $this->id; ?>">	
<?php if( $this->AutoGrid->hasCustomGrid ): ?><?= '<style>#custom_grid_'.$this->id.' {grid-template-columns: '.$this->autogrid_css.';}</style>'; ?><?php endif; ?>
<?php endif; ?>
<?php if($this->AutoGrid->stop): ?>
</div>
<div class="placeholder" data-id="<?= $this->id; ?>"></div>
<?php endif;?>