# ablocks/2.9.0/templates/full-width-template.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.9.0. 24 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/templates/full-width-template.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/templates/full-width-template.php
- Modified: 2025-12-28T14:24:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ablocks/2.9.0/code/templates/full-width-template.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
/*
 * Template Name: aBlocks Full Width
 * Description: A full-width template with no sidebar.
 */

get_header();
?>

<div class="ablocks-content-area ablocks-content-area--full-width">
	<?php
	while ( have_posts() ) :
		the_post();
		the_content();
	endwhile;
	?>
</div>
<?php
get_footer();

```
