<?php
/**
* 单页内容页,单页调用,后台 页面管理模块,别名调用 page-{$slug}
*/
get_header();
$slug = get_post_field( 'post_name', get_the_id() );
$slug_array = explode('-', $slug );
$temp_type = isset( $slug_array[0] ) ? $slug_array[0] : $slug;
?>
<div id="heku_content">
<?php get_template_part( 'TempParts/Page/page',isset($temp_type) ? $temp_type : 'contact'); ?>
</div><!-- / end heku_content -->
<?php get_footer(); ?>