HEX
Server:
System: Linux aac286ea486c 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User: root (0)
PHP: 8.2.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,disk_free_space,diskfreespace
Upload Files
File: /dom877180/wp-content/themes/splash/coming-soon.php
<?php
/*
Template Name: Coming soon
*/
?>

<?php get_header(); ?>

	<?php if(have_posts()): ?>
		<?php while(have_posts()): the_post(); ?>
			<?php if(has_post_thumbnail()):
				$page_bg = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
			endif; ?>
			<div class="stm-coming-soon-centered">
				<div class="container">
					<?php the_content(); ?>
				</div>
			</div>
		<?php endwhile; ?>
	<?php endif; ?>

    <?php if(splash_is_layout("baseball")): ?>
    <div class="stm-bsb-comingsoon-footer">
        <div class="stm-left">
            <?php
            $footer_left_text = get_theme_mod('footer_left_text', esc_html__('Copyright (c) 2016 Splash.', 'splash'));
            $footer_right_text = get_theme_mod('footer_right_text', esc_html__('Theme by Stylemix Themes.', 'splash'));

			$footer_right_text = str_replace("Stylemix Themes", "<span class='stm-white'>StylemixThemes</span>", get_theme_mod('footer_right_text', esc_html__('Theme by Stylemix Themes.', 'splash')));

            echo wp_kses_post($footer_left_text . " " . $footer_right_text);
            ?>
        </div>
        <div class="stm-right">
            <?php
            $stm_socials = splash_socials('footer_socials');

            if(!empty($stm_socials)){
            ?>
                <ul class="footer-bottom-socials stm-list-duty">
                    <?php foreach($stm_socials as $key => $value): ?>
                        <li class="stm-social-<?php echo esc_attr($key); ?>">
                            <a href="<?php echo esc_attr($value); ?>" target="_blank">
                                <i class="fa fa-<?php echo esc_attr($key); ?>"></i>
                            </a>
                        </li>
                    <?php endforeach; ?>
                </ul>
            <?php
            }
            ?>
        </div>
    </div>
    <?php endif; ?>

<?php if(!empty($page_bg[0])): ?>
	<style>
		#wrapper {
			background-image: url("<?php echo esc_url($page_bg[0]); ?>");
            background-size: cover;
		}
	</style>
<?php endif; ?>

<?php get_footer(); ?>