An updated theme (based on Atticus Finch) for ClassicPress
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
639 B

3 years ago
3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * <?php
  4. *
  5. * Template Name: Full Width Page
  6. *
  7. *
  8. * @package Portage
  9. */
  10. get_header();
  11. ?>
  12. <div id="content">
  13. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  14. <?php portage_edit_post(); ?>
  15. <?php do_action( 'portage_before_post_title' ); ?>
  16. <h1 class="post-title">
  17. <span class="dashicons dashicons-admin-page"></span>
  18. <?php the_title(); ?>
  19. </h1>
  20. <!-- Start the loop -->
  21. <?php if ( have_posts() ) : ?>
  22. <?php while ( have_posts() ) : the_post(); ?>
  23. <?php get_template_part( 'inc/page', 'main' ); ?>
  24. <!-- End the loop -->
  25. <?php endwhile; ?>
  26. <?php endif; ?>
  27. </div> <!-- end Content -->
  28. <?php get_footer(); ?>