29 lines
952 B
PHP
29 lines
952 B
PHP
<?php
|
|
/**
|
|
* Section template.
|
|
*/
|
|
|
|
// If this file is called directly, abort.
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
?>
|
|
<div class="cx-ui-kit cx-section <?php echo esc_attr( $args['class'] ); ?>" onclick="void(0)">
|
|
<div class="cx-section__holder">
|
|
<div class="cx-section__inner">
|
|
<div class="cx-section__info">
|
|
<?php if ( ! empty( $args['title'] ) ) { ?>
|
|
<h1 class="cx-ui-kit__title cx-section__title" role="banner" ><?php echo wp_kses_post( $args['title'] ); ?></h1>
|
|
<?php } ?>
|
|
<?php if ( ! empty( $args['description'] ) ) { ?>
|
|
<div class="cx-ui-kit__description cx-section__description " role="note" ><?php echo wp_kses_post( $args['description'] ); ?></div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php if ( ! empty( $args['children'] ) ) { ?>
|
|
<div class="cx-ui-kit__content cx-section__content" role="group" >
|
|
<?php echo CX_Interface_Builder::kses( $args['children'] ); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|