first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* Features list item template
*/
$classes = 'pricing-feature-' . $this->__loop_item( array( '_id' ) );
$classes .= ' ' . $this->__loop_item( array( 'item_included' ) );
?>
<div class="pricing-feature <?php echo $classes; ?>">
<div class="pricing-feature__inner"><?php
echo $this->__pricing_feature_icon();
printf( '<span class="pricing-feature__text">%s</span>', $this->__loop_item( array( 'item_text' ) ) );
?></div>
</div>