36 строки
903 B
PHP
36 строки
903 B
PHP
<?php
|
|
/**
|
|
* The template for displaying all single posts.
|
|
*
|
|
* @package view_source
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="primary" class="content-area">
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<header class="entry-header">
|
|
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
</div><!-- .entry-content -->
|
|
|
|
<footer class="entry-footer">
|
|
<?php view_source_entry_footer(); ?>
|
|
</footer><!-- .entry-footer -->
|
|
</article><!-- #post-## -->
|
|
|
|
<?php //the_post_navigation(); ?>
|
|
|
|
<?php endwhile; // End of the loop. ?>
|
|
|
|
</main><!-- #main -->
|
|
</div><!-- #primary -->
|
|
<?php get_footer(); ?>
|