<?php

/**
 * The template for displaying about.
 *
 * 
 */


$pageField = get_fields();
$showHideAbout = $pageField['show_hide_ss_about'];
$headingAbout = $pageField['heading_about'];
$contentAbout = $pageField['content_about'];
?>
<?php if( !empty($showHideAbout) ): ?>
    <section class="about-section section">
        <div class="container">
            <div class="wrapper">
            <?php if( !empty($headingAbout) ): ?>
                <h2 class="heading-section"><?php echo $headingAbout; ?></h2>
            <?php endif; ?>
            <?php if( !empty($contentAbout) ): ?>
                <div class="content-section"><?php echo $contentAbout; ?></div>
            <?php endif; ?>
            </div>
        </div>
    </section>
<?php endif; ?>
