29 lines
817 B
PHP
29 lines
817 B
PHP
<?php get_header(); ?>
|
|
|
|
<main class="site-main page-content">
|
|
<div class="container">
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
?>
|
|
<article id="page-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<header class="entry-header">
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
</header>
|
|
|
|
<?php if (has_post_thumbnail()) : ?>
|
|
<div class="entry-thumbnail">
|
|
<?php the_post_thumbnail('large'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|