18 lines
205 B
PHP
18 lines
205 B
PHP
<?php
|
|
get_header();
|
|
?>
|
|
|
|
<main>
|
|
|
|
|
|
<?php
|
|
the_post();
|
|
get_template_part( 'template-parts/content', 'page' );
|
|
?>
|
|
|
|
</main>
|
|
|
|
<?php
|
|
|
|
get_template_part('template-parts/sidebar');
|
|
get_footer();
|