page.php 661 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template for displaying all pages.
  4. *
  5. * This is the template that displays all pages by default.
  6. * Please note that this is the WordPress construct of pages
  7. * and that other 'pages' on your WordPress site may use a
  8. * different template.
  9. *
  10. * @link https://codex.wordpress.org/Template_Hierarchy
  11. *
  12. * @package Akina
  13. */
  14. get_header(); ?>
  15. <div id="primary" class="content-area">
  16. <main id="main" class="site-main" role="main">
  17. <?php
  18. while ( have_posts() ) : the_post();
  19. get_template_part( 'tpl/content', 'page' );
  20. endwhile; // End of the loop.
  21. ?>
  22. </main><!-- #main -->
  23. </div><!-- #primary -->
  24. <?php
  25. get_footer();