File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/builder/template/spa_about.php
<?php
extract( shortcode_atts( array(
'title' => '',
'span' => '',
'image' => '',
'image_shadown' => '',
), $atts ) );
$image = wp_get_attachment_image_src( $image , 'full' );
$img_shadown = wp_get_attachment_image_src($image_shadown, 'full');
?>
<div class="aboutImg">
<?php
if($image) : ?>
<img class="img-responsive wow fadeInUpBig animated" data-wow-offset="300" src="<?php echo $image[0]; ?>" alt="About" style="visibility: visible;">
<?php endif; ?>
<?php if($img_shadown) : ?>
<img class="shadow img-responsive" src="<?php echo $img_shadown[0]; ?>" alt="Seperator shadow">
<?php endif; ?>
</div>
<h2><em><?php echo esc_attr($title); ?></em> <span><?php echo esc_attr($span); ?></span></h2>
<?php echo wpb_js_remove_wpautop($content); ?>