123456789101112131415161718192021222324 |
- <?php get_header(); ?>
-
- <?php do_action( 'foto_before_content_page' ); ?>
-
- <section id="content" class="site-content col-18" role="main">
-
- <?php do_action( 'foto_before_article_page' ); ?>
-
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', 'page' ); ?>
- <?php comments_template( '', true ); ?>
- <?php endwhile; // end of the loop. ?>
-
- <?php do_action( 'foto_after_article_page' ); ?>
-
- </section><!-- end #content .site-content -->
-
- <?php do_action( 'foto_after_content_page' ); ?>
-
- <?php get_sidebar(); ?>
- <?php get_footer(); ?>
|