![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/confenda.com/wp-content/themes/beevent/ |
<?php /** *Template Name:Coming Soon * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage beevent * @since beevent 4.1 */ /** Call header using wordpress function */ get_header(); ?> <!-- Banners --> <?php $image = beevent_get_option('coming_image'); ?> <!--Header--> <header class="navbar-fixed-top"> <div class="default-header"> <div class="container"> <div class="row"> <div class="col-sm-12 col-md-12 text-center"> <div class="logo"> <?php $site_logo = beevent_get_option( 'site_logo' ); $site_name = esc_html(get_bloginfo('name', 'display')); if($site_logo['url']): echo '<a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'" rel="home" ><img src="'.esc_url($site_logo['url']).'" alt="image"></a>'; else: echo '<a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'" rel="home" >'.esc_html($site_name).'</a>'; endif; ?> </div> </div> </div> </div> </div> </header> <div id="eventshow" class="slideshow coming_soon"> <div id="siderwidth" class="slides" style="background-image:url(<?php echo esc_url($image['url']); ?>);"> <div class="banner-fixed"> <div class="container"> <div class="banner-content"> <div class="content"> <div class="banner-tagline text-center"> <h1><?php the_title(); ?></h1> </div> </div> </div> </div> </div> <div class="container countdown-tab" id="event-display"> <div class="countdown"> <div class="counter-sec"> <div class="countdown-counter half-width text-center"> <div class="timer"> <div class="countdownc styledc"></div> </div> </div> <div class="countdown-btn half-width"><a class="btn btn-lg btn-danger" data-bs-toggle="modal" data-bs-target="#contact_form_popup"><?php echo esc_html('Send Message','beevent'); ?></a></div> </div> </div> </div> <script type="text/javascript"> <?php $countdown_timer = beevent_get_option('coming_countdown_timer'); ?> var endDate = "<?php echo esc_html($countdown_timer,'beevent');?>"; //alert(endDate); $('.countdownc.styledc').countdown({ date: endDate, render: function(data) { if(this.leadingZeros(data.years, 2) == 0){ $(this.el).html("<div class='countdown-amount'>" + this.leadingZeros(data.days, 2) + " <span class='countdown-period'>Days</span></div><div class='countdown-amount'>" + this.leadingZeros(data.hours, 2) + " <span class='countdown-period'>Hours</span></div><div class='countdown-amount'>" + this.leadingZeros(data.min, 2) + " <span class='countdown-period'>Minutes</span></div><div class='countdown-amount'>" + this.leadingZeros(data.sec, 2) + " <span class='countdown-period'>Seconds</span></div>"); }else{ $(this.el).html("<div class='countdown-amount'>" + this.leadingZeros(data.years, 2) + " <span class='countdown-period'>Years</span></div><div class='countdown-amount'>" + this.leadingZeros(data.days, 2) + " <span class='countdown-period'>Days</span></div><div class='countdown-amount'>" + this.leadingZeros(data.hours, 2) + " <span class='countdown-period'>Hours</span></div><div class='countdown-amount'>" + this.leadingZeros(data.min, 2) + " <span class='countdown-period'>Minutes</span></div><div class='countdown-amount'>" + this.leadingZeros(data.sec, 2) + " <span class='countdown-period'>Seconds</span></div>"); } } }); </script> </div> </div> <div class="modal fade" id="contact_form_popup"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h3> <?php echo esc_html('Do you have any Questions?','beevent');?> </h3> </div> <div class="modal-body"><?php echo do_shortcode('[contact-form-7 id="2285" title="Coming Soon"]'); ?></div> </div> </div> </div> <!-- /Banners --> <!-- Our-Blog --> <!-- /Our-Blog --> <?php get_footer();