page.php 609 B

123456789101112131415161718192021222324
  1. <?php get_header(); ?>
  2. <?php do_action( 'foto_before_content_page' ); ?>
  3. <section id="content" class="site-content col-18" role="main">
  4. <?php do_action( 'foto_before_article_page' ); ?>
  5. <?php while ( have_posts() ) : the_post(); ?>
  6. <?php get_template_part( 'content', 'page' ); ?>
  7. <?php comments_template( '', true ); ?>
  8. <?php endwhile; // end of the loop. ?>
  9. <?php do_action( 'foto_after_article_page' ); ?>
  10. </section><!-- end #content .site-content -->
  11. <?php do_action( 'foto_after_content_page' ); ?>
  12. <?php get_sidebar(); ?>
  13. <?php get_footer(); ?>