Advertisement
rejuancse

coming-soon

Mar 4th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.66 KB | None | 0 0
  1. <?php
  2. /*
  3. * Template Name: Coming Soon
  4. */
  5. get_header('alternative');
  6.  
  7. $comingsoon_date = '';
  8. if ( kidzy_options('comingsoon-date') ) {
  9.     $comingsoon_date = esc_attr( kidzy_options('comingsoon-date') );
  10. } ?>
  11.  
  12. <section class="coming-soon-section text-center">
  13.  
  14.     <?php if( kidzy_options_url('comingsoon-logo','url')): ?>
  15.         <div class="coming-soon-logo">
  16.             <img src="<?php echo esc_url( kidzy_options_url('comingsoon-logo','url')); ?>" alt="<?php  esc_html_e( '404 error', 'kidzy' ); ?>">
  17.         </div>
  18.     <?php endif; ?>
  19.  
  20. <?php
  21.  
  22. $countdate = str_replace('-', '/', $comingsoon_date);
  23.  
  24.     //$jihad = date_i18n("Y-m-d", strtotime($comingsoon_date)); ?>
  25.  
  26.     <ul id="count-down" class="counter-class coming-soon-counter" data-date="<?php echo esc_attr($countdate);?>">  
  27.         <li class="countdown-section">
  28.             <p class="days counter-days"></p>
  29.             <span class="countdown-period"><?php esc_html_e('Days', 'kidzy') ?></span>
  30.         </li>
  31.         <li class="countdown-section">
  32.             <p class="hours counter-hours"></p>
  33.             <span class="countdown-period"><?php esc_html_e('Hours', 'kidzy') ?></span>
  34.         </li>
  35.         <li class="countdown-section">
  36.             <p class="minutes counter-minutes"></p>
  37.             <span class="countdown-period"><?php esc_html_e('Minutes', 'kidzy') ?></span>
  38.         </li>
  39.         <li class="countdown-section">
  40.             <p class="seconds counter-seconds"></p>
  41.             <span class="countdown-period"><?php esc_html_e('Seconds', 'kidzy') ?></span>
  42.         </li>  
  43.     </ul>
  44.  
  45.  
  46.  
  47.  
  48.         <ul class="social-icon">
  49.              <li><?php if ( kidzy_options('topbar-social')) { ?>
  50.                 <?php get_template_part( 'lib/social-icons'); ?>
  51.             <?php } ?></li>
  52.         </ul>
  53.  
  54.         <?php if ( kidzy_options('comingsoon-subtitle') ){?>
  55.         <p><?php echo esc_html( kidzy_options('comingsoon-subtitle' )); ?></p>
  56.         <?php }?>
  57.  
  58.         <form action="#" method="post" class="coming-soon-subs-form">
  59.             <input type="email" placeholder="Enter your email here" name="email">
  60.             <button type="submit" class="primary-btn"><span><?php esc_html_e( 'Submit', 'kidzy' ); ?></span></button>
  61.         </form>
  62.  
  63.         <div class="text-center comingsoon-footer">
  64.            
  65.             <?php if ( kidzy_options('comingsoon-copyright') ){?>
  66.                 <div class="copyright-text">
  67.                     <p><?php echo esc_html(kidzy_options('comingsoon-copyright')); ?></p>
  68.                 </div>
  69.             <?php }?>  
  70.         </div><!--/.comingsoon-footer-->
  71. </section> <!-- Comingsoon -->
  72.  
  73. <?php get_footer('alternative');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement