Files
2026-02-05 20:19:55 +08:00

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(); ?>