| @@ -1,0 +1,23 @@ | ||
| 1 | +<?php | |
| 2 | + | |
| 3 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 4 | + exit; | |
| 5 | +} | |
| 6 | +/* | |
| 7 | + * Template Name: aBlocks Full Width | |
| 8 | + * Description: A full-width template with no sidebar. | |
| 9 | + */ | |
| 10 | + | |
| 11 | +get_header(); | |
| 12 | +?> | |
| 13 | + | |
| 14 | +<div class="ablocks-content-area ablocks-content-area--full-width"> | |
| 15 | + <?php | |
| 16 | + while ( have_posts() ) : | |
| 17 | + the_post(); | |
| 18 | + the_content(); | |
| 19 | + endwhile; | |
| 20 | + ?> | |
| 21 | +</div> | |
| 22 | +<?php | |
| 23 | +get_footer(); | |