page-course-description.php 551 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Template Name: Course Description
  4. *
  5. * @package UIU_CSE
  6. */
  7. get_header(); ?>
  8. <div class="container full-width">
  9. <div class="row">
  10. <main id="main" class="site-main" role="main">
  11. <?php while (have_posts()) : the_post(); ?>
  12. <div class="sections">
  13. <?php the_content(); ?>
  14. </div><!-- .sections -->
  15. <?php endwhile; // end of the loop.
  16. ?>
  17. </main><!-- #main -->
  18. </div><!-- .row -->
  19. </div><!-- .container -->
  20. <?php get_footer(); ?>