![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/plugins/powerkit/modules/coming-soon/templates/ |
<?php /** * Coming Soon default template * * @var $object - Page object. * @var $title - The title. * @var $content - The content. * * @package Powerkit */ ?><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <?php wp_head(); ?> <?php if ( function_exists( 'cnvs_gutenberg' ) ) { $blocks = parse_blocks( $content ); $blocks_css = cnvs_gutenberg()->parse_blocks_css( $blocks ); if ( $blocks_css ) { call_user_func( 'printf', '<style>%s</style>', $blocks_css ); } } ?> </head> <body> <div class="pk-coming-soon-page pk-coming-soon-default"> <div class="pk-coming-soon-container"> <?php if ( $object && has_post_thumbnail( $object ) ) { ?> <div class="pk-coming-soon-image"> <?php echo get_the_post_thumbnail( $object, 'large', array( 'class' => 'pk-lazyload-disabled' ) ); ?> </div> <?php } ?> <div class="pk-coming-soon-content"> <div class="entry-content"> <?php $content = do_blocks( $content ); call_user_func( 'printf', '%s', do_shortcode( $content ) ); ?> </div> </div> </div> </div> <?php wp_footer(); ?> </body> </html>