16 lines
243 B
PHP
16 lines
243 B
PHP
<?php
|
|
get_header();
|
|
?>
|
|
<?php
|
|
if ( is_front_page() ) {
|
|
get_template_part( 'parts/home' );
|
|
} else if ( is_home() ) {
|
|
get_template_part( 'parts/blog' );
|
|
} else if ( false ) {
|
|
// This is a bad idea
|
|
echo 'Microblog';
|
|
}
|
|
?>
|
|
<?php
|
|
get_footer();
|
|
?>
|