Files
symfony-flex-recipes-contrib/mukadi/wordpress-bundle/1.0/wp/themes/wp-blank/index.php
T

20 lines
423 B
PHP

<?php get_header(); ?>
<main role="main">
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<article>
<header>
<h1><?php the_title(); ?></h1>
</header>
<?php the_content(); ?>
</article>
<?php endwhile; else: ?>
<article>
<p>Nothing to see.</p>
</article>
<?php endif; ?>
</main>
<?php get_footer();