| 1 |
<?php |
| 2 |
/** |
| 3 |
* Coming Soon default template |
| 4 |
* |
| 5 |
* @var $object - Page object. |
| 6 |
* @var $title - The title. |
| 7 |
* @var $content - The content. |
| 8 |
* |
| 9 |
* @package PowerKit |
| 10 |
*/ |
| 11 |
|
| 12 |
?><!DOCTYPE html> |
| 13 |
<html lang="en"> |
| 14 |
<head> |
| 15 |
<meta charset="UTF-8"> |
| 16 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 17 |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
| 18 |
|
| 19 |
<?php wp_head(); ?> |
| 20 |
</head> |
| 21 |
<body> |
| 22 |
<div class="pk-coming-soon-page pk-coming-soon-default"> |
| 23 |
<div class="pk-coming-soon-container"> |
| 24 |
<?php if ( $object && has_post_thumbnail( $object ) ) { ?> |
| 25 |
<div class="pk-coming-soon-image"> |
| 26 |
<?php echo get_the_post_thumbnail( $object, 'large', array( 'class' => 'pk-lazyload-disabled' ) ); ?> |
| 27 |
</div> |
| 28 |
<?php } ?> |
| 29 |
<div class="pk-coming-soon-content"> |
| 30 |
<div class="entry-content"> |
| 31 |
<?php |
| 32 |
echo apply_filters( 'the_content', $content ); // XSS. |
| 33 |
?> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
|
| 39 |
<?php wp_footer(); ?> |
| 40 |
</body> |
| 41 |
</html> |
| 42 |
|