HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/dragonexpert.com/wp-content/themes/coni/template-parts/section-welcome.php
<?php
$coni_enable_section = get_theme_mod( 'coni_welcome_enable', true );
if ( $coni_enable_section || is_customize_preview() ) :
?>
<div id="welcome-section" class="welcome-section" <?php if( false == $coni_enable_section ): echo 'style="display: none;"'; endif ?>>
    <?php
    $welcome_image = wp_get_attachment_image_src( absint( get_theme_mod( 'coni_welcome_image' ) ), 'full' );
    $welcome_image = $welcome_image[0];
    if ( empty( $welcome_image ) ) {
        $welcome_image = get_template_directory_uri() . '/images/peaks.jpg';
    }
    ?>
    <img src="<?php echo esc_url( $welcome_image ); ?>" alt="<?php echo esc_html( get_theme_mod( 'coni_welcome_title', __( 'Be the one to stand out in the crowd', 'coni' ) ) ); ?>">
    <div class="welcome-intro">
        <h2 class="intro-line"><?php echo esc_html( get_theme_mod( 'coni_welcome_title', __( 'Be the one to stand out in the crowd', 'coni' ) ) ); ?></h2>
        <?php $coni_welcome_link_title = get_theme_mod( 'coni_welcome_link_title', esc_html__( 'Learn More', 'coni' ) ); ?>
        <?php if ( !empty( $coni_welcome_link_title ) || is_customize_preview() ) { ?>
        <a href="<?php echo esc_url( get_theme_mod( 'coni_welcome_link_url', '#' ) ); ?>" class="btn-ql"><?php echo esc_html( $coni_welcome_link_title ); ?></a>
        <?php } ?>
    </div><!-- welcome-intro -->
        
</div><!-- welcome-section -->
<?php endif ?>