not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
981 B

  1. <?php
  2. /**
  3. * The template for displaying all single posts and attachments
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Fifteen
  7. * @since Twenty Fifteen 1.0
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <main id="main" class="site-main" role="main">
  12. <article class="post">
  13. <?php
  14. // Start the loop.
  15. while ( have_posts() ) : the_post();
  16. /*
  17. * Include the post format-specific template for the content. If you want to
  18. * use this in a child theme, then include a file called called content-___.php
  19. * (where ___ is the post format) and that will be used instead.
  20. */
  21. get_template_part( 'content', 'site' );
  22. // If comments are open or we have at least one comment, load up the comment template.
  23. // if ( comments_open() || get_comments_number() ) :
  24. // comments_template();
  25. // endif;
  26. // End the loop.
  27. endwhile;
  28. ?>
  29. </article>
  30. </main><!-- .site-main -->
  31. </div><!-- .content-area -->
  32. <?php get_footer(); ?>