20 lines
254 B
PHP
20 lines
254 B
PHP
|
<?php
|
||
|
/* Template Name: Coming Soon Page */
|
||
|
/**
|
||
|
* @package THINKAI
|
||
|
* @author Template Path
|
||
|
* @version 1.0
|
||
|
*/
|
||
|
?>
|
||
|
<?php
|
||
|
|
||
|
get_header('coming-soon') ;
|
||
|
|
||
|
while (have_posts()): the_post();
|
||
|
the_content();
|
||
|
endwhile;
|
||
|
|
||
|
get_footer('coming-soon') ;
|
||
|
|
||
|
?>
|