mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-15 17:16:29 +03:00
20 lines
423 B
PHP
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();
|