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
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Title: Homepage for right-aligned blog
 | |
|  * Slug: twentytwentyfive/template-home-vertical-header-blog
 | |
|  * Template Types: front-page, index, home
 | |
|  * Viewport width: 1400
 | |
|  * Inserter: no
 | |
|  *
 | |
|  * @package WordPress
 | |
|  * @subpackage Twenty_Twenty_Five
 | |
|  * @since Twenty Twenty-Five 1.0
 | |
|  */
 | |
| 
 | |
| ?>
 | |
| <!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"0"},"blockGap":{"left":"0"}}}} -->
 | |
| <div class="wp-block-columns is-not-stacked-on-mobile" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
 | |
| 	<!-- wp:column {"width":"8rem"} -->
 | |
| 	<div class="wp-block-column" style="flex-basis:8rem">
 | |
| 		<!-- wp:template-part {"slug":"vertical-header"} /-->
 | |
| 	</div>
 | |
| 	<!-- /wp:column -->
 | |
| 
 | |
| 	<!-- wp:column {"width":"90%","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}}} -->
 | |
| 	<div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50);flex-basis:90%">
 | |
| 		<!-- wp:group {"tagName":"main","layout":{"type":"default"}} -->
 | |
| 		<main class="wp-block-group">
 | |
| 			<!-- 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:pattern {"slug":"twentytwentyfive/hidden-blog-heading"} /-->
 | |
| 			<!-- 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:pattern {"slug":"twentytwentyfive/template-query-loop-vertical-header-blog"} /-->
 | |
| 
 | |
| 			<!-- 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 -->
 | |
| 		</main>
 | |
| 		<!-- /wp:group -->
 | |
| 	</div>
 | |
| 	<!-- /wp:column -->
 | |
| </div>
 | |
| <!-- /wp:columns -->
 | |
| 
 | |
| <!-- wp:template-part {"slug":"footer"} /-->
 |