14 lines
452 B
PHP
14 lines
452 B
PHP
<article <?php post_class(); ?>>
|
|
<header>
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
<?php get_template_part('partials/entry-meta'); ?>
|
|
</header>
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
<footer>
|
|
<?php wp_link_pages(['before' => '<nav class="page-nav"><p>' . __('Pages:', 'sage'), 'after' => '</p></nav>']); ?>
|
|
</footer>
|
|
<?php comments_template('/templates/partials/comments.php'); ?>
|
|
</article>
|