2020-03-07 18:43:08 +08:00
|
|
|
<?php
|
|
|
|
get_header();
|
2020-03-07 15:49:14 +08:00
|
|
|
|
|
|
|
if ( have_posts() ) {
|
|
|
|
the_post();
|
2020-03-19 12:49:36 +08:00
|
|
|
|
|
|
|
get_template_part( 'template/post/content', 'page' );
|
2020-03-07 15:49:14 +08:00
|
|
|
}
|
|
|
|
|
2020-03-07 18:43:08 +08:00
|
|
|
get_footer();
|
|
|
|
?>
|