32 lines
698 B
PHP
32 lines
698 B
PHP
<?php
|
|
/**
|
|
* The main template file
|
|
*
|
|
* @package SewJoy_Theme
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<main id="main" class="site-main">
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<header class="entry-header">
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
</header>
|
|
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
|
|
<?php else : ?>
|
|
<p>SEWJOY THEME 已激活</p>
|
|
<?php endif; ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|