template-fullwidth.php 631 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Template Name: Full Width Page
  4. *
  5. * @package spice-software
  6. */
  7. get_header();?>
  8. <section class="section-space page">
  9. <div class="container<?php echo esc_html(spice_software_container());?>">
  10. <div class="row">
  11. <div class="col-lg-12 col-md-12 col-sm-12">
  12. <?php
  13. while ( have_posts()):
  14. the_post();
  15. get_template_part('template-parts/content','page');
  16. if ( comments_open() || get_comments_number() ) :
  17. comments_template();
  18. endif;
  19. endwhile;
  20. ?>
  21. </div>
  22. </div>
  23. </div>
  24. </section>
  25. <?php get_footer();?>