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
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Title: Centered statement
 | |
|  * Slug: twentytwentyfour/text-centered-statement
 | |
|  * Categories: text, about, featured
 | |
|  * Keywords: mission, introduction
 | |
|  * Viewport width: 1400
 | |
|  * Description: A centered text statement with a large amount of padding on all sides.
 | |
|  */
 | |
| ?>
 | |
| 
 | |
| <!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60","right":"var:preset|spacing|60"},"margin":{"top":"0","bottom":"0"}}},"backgroundColor":"base-2","layout":{"type":"constrained"}} -->
 | |
| <div class="wp-block-group alignfull has-base-2-background-color has-background" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)">
 | |
| 	<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
 | |
| 	<div class="wp-block-group alignwide">
 | |
| 		<!-- wp:spacer {"height":"var:preset|spacing|50"} -->
 | |
| 		<div style="height:var(--wp--preset--spacing--50)" aria-hidden="true" class="wp-block-spacer"></div>
 | |
| 		<!-- /wp:spacer -->
 | |
| 
 | |
| 		<!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":"1.2","fontStyle":"normal","fontWeight":"400"}},"fontSize":"x-large","fontFamily":"heading"} -->
 | |
| 		<p class="has-text-align-center has-heading-font-family has-x-large-font-size" style="font-style:normal;font-weight:400;line-height:1.2"><?php echo wp_kses_post( __( '<em>Études</em> is not confined to the past—we are passionate about the cutting edge designs shaping our world today.', 'twentytwentyfour' ) ); ?></p>
 | |
| 		<!-- /wp:paragraph -->
 | |
| 
 | |
| 		<!-- wp:spacer {"height":"var:preset|spacing|50"} -->
 | |
| 		<div style="height:var(--wp--preset--spacing--50)" aria-hidden="true" class="wp-block-spacer"></div>
 | |
| 		<!-- /wp:spacer -->
 | |
| 	</div>
 | |
| 	<!-- /wp:group -->
 | |
| </div>
 | |
| <!-- /wp:group -->
 |