upskill-event-manager/wordpress-dev/wordpress/wp-content/plugins/essential-blocks/templates/essential-blocks-fullwidth-template.php
bengizmo d1509b3d60 feat(dev-env): implement backup-based development workflow
This commit introduces a more reliable and consistent approach to setting up
the development environment using backups:

- Add setup-from-backup.sh script for environment setup from existing backups
- Standardize script naming and organization
- Move obsolete scripts to bin/obsolete directory
- Update documentation with new workflow instructions
- Create migration guide for transitioning to new workflow
- Update Memory Bank with workflow improvements

The new workflow provides:
- More reliable environment setup
- Faster setup process
- Offline development capability
- Consistent development environments across team members

Breaking changes:
- setup-dev.sh is replaced by setup-from-backup.sh
- sync-and-setup.sh is replaced by separate scripts
- verify-with-wpcli.sh is no longer used

Migration path is documented in MIGRATION_GUIDE.md
2025-03-26 11:26:18 -03:00

54 lines
998 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use EssentialBlocks\Utils\TemplateHelpers;
/**
* Template Name: Essential Blocks Fullwidth Template
* Description: Fullwidth template for Essential Blocks template
*
* @link https://essential-blocks.com
* @since 3.3.3
*
* @package Essential Blocks
*/
TemplateHelpers::eb_template_header();
global $post;
?>
<main class="eb-fullwidth-container" style="width: 100%;">
<div class="eb-fullwidth-content-wrapper">
<?php
/**
* Hooks anything before content
*
* @since 3.3.3
*/
do_action( 'eb_before_fullwidth_content' );
?>
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php
/**
* Hooks anything after content
*
* @since 3.3.3
*/
do_action( 'eb_after_fullwidth_content' );
?>
</div>
</main>
<?php
TemplateHelpers::eb_template_footer();
?>