13 lines
149 B
PHP
13 lines
149 B
PHP
|
<?php
|
||
|
get_header();
|
||
|
|
||
|
while (have_posts()) :
|
||
|
|
||
|
the_post();
|
||
|
|
||
|
get_template_part('format', 'page-standard');
|
||
|
|
||
|
endwhile;
|
||
|
|
||
|
get_footer();
|
||
|
?>
|