1234567891011121314151617181920212223 |
- <?php
- /**
- * Template Name: Course Description
- *
- * @package UIU_CSE
- */
- get_header(); ?>
- <div class="container full-width">
- <div class="row">
- <main id="main" class="site-main" role="main">
- <?php while (have_posts()) : the_post(); ?>
- <div class="sections">
- <?php the_content(); ?>
- </div><!-- .sections -->
- <?php endwhile; // end of the loop.
- ?>
- </main><!-- #main -->
- </div><!-- .row -->
- </div><!-- .container -->
- <?php get_footer(); ?>
|