| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * |
|---|
| 4 | * Template Name: Full Width Page |
|---|
| 5 | * |
|---|
| 6 | * Displays the Full Width page. |
|---|
| 7 | * |
|---|
| 8 | * @package flixita |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | get_header(); |
|---|
| 12 | get_template_part('/template-parts/site', 'breadcrumb'); |
|---|
| 13 | ?> |
|---|
| 14 | <section class="flixita-page st-py-default"> |
|---|
| 15 | <div class="container"> |
|---|
| 16 | <div class="row row-cols-1 gy-5 wow fadeInUp"> |
|---|
| 17 | <div class="col"> |
|---|
| 18 | <?php the_post(); the_content(); |
|---|
| 19 | if( $post->comment_status == 'open' ) { |
|---|
| 20 | comments_template( '', true ); // show comments |
|---|
| 21 | } |
|---|
| 22 | ?> |
|---|
| 23 | </div> |
|---|
| 24 | </div> |
|---|
| 25 | </div> |
|---|
| 26 | </section> |
|---|
| 27 | <?php get_footer(); ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.