HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/templates/comingsoon.php
<?php
/**
 * Template Name:  Coming Soon Mode
 *
 **/
get_header();
$background_images = thim_meta( 'thim_comingsoon_background_images', array( 'type'   => 'image',
                                                                            'single' => 'false',
                                                                            'size'   => 'full'
) );
?>
	<div class="comingsoon-wrapper">
		<div class="background">
			<ul class="slides">
				<?php
				if ( $background_images ) {
					foreach ( $background_images as $image ) {
						echo "<li><img alt='' src='{$image['url']}'></li>";
					}
				}
				?>
			</ul>
		</div>
		<div class="coom-inner">
			<?php do_action( 'thim_header_logo' ); ?>
			<h1 class="title"><?php echo get_the_title(); ?></h1>
			<div class="thim-countdown" data-date="<?php echo esc_attr( date( 'M d, Y h:i:s', strtotime( thim_meta( 'thim_comingsoon_date' ) ) ) ); ?>">
				<div class="count-down"></div>
			</div>
			<div class="content-text">
				<?php
				while ( have_posts() ) : the_post();
					the_content();
				endwhile;
				?>
			</div>
		</div>
	</div>
<?php get_footer(); ?>