21 lines
479 B
PHP
21 lines
479 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package nasatheme
|
|
*/
|
|
?>
|
|
|
|
<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();
|
|
wp_link_pages(array(
|
|
'before' => '<div class="page-links">' . esc_html__('Pages:', 'elessi-theme'),
|
|
'after' => '</div>',
|
|
));
|
|
?>
|
|
</div>
|
|
</article>
|