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
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* The header for Astra Theme.
|
|
*
|
|
* This is the template that displays all of the <head> section and everything up until <div id="content">
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package Astra
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
?><!DOCTYPE html>
|
|
<?php astra_html_before(); ?>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<?php astra_head_top(); ?>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<?php
|
|
if ( apply_filters( 'astra_header_profile_gmpg_link', true ) ) {
|
|
?>
|
|
<link rel="profile" href="https://gmpg.org/xfn/11">
|
|
<?php
|
|
}
|
|
?>
|
|
<?php wp_head(); ?>
|
|
<?php astra_head_bottom(); ?>
|
|
</head>
|
|
|
|
<body <?php astra_schema_body(); ?> <?php body_class(); ?>>
|
|
<?php astra_body_top(); ?>
|
|
<?php wp_body_open(); ?>
|
|
|
|
<a
|
|
class="skip-link screen-reader-text"
|
|
href="#content"
|
|
title="<?php echo esc_attr( astra_default_strings( 'string-header-skip-link', false ) ); ?>">
|
|
<?php echo esc_html( astra_default_strings( 'string-header-skip-link', false ) ); ?>
|
|
</a>
|
|
|
|
<div
|
|
<?php
|
|
echo wp_kses_post(
|
|
astra_attr(
|
|
'site',
|
|
array(
|
|
'id' => 'page',
|
|
'class' => 'hfeed site',
|
|
)
|
|
)
|
|
);
|
|
?>
|
|
>
|
|
<?php
|
|
astra_header_before();
|
|
|
|
astra_header();
|
|
|
|
astra_header_after();
|
|
|
|
astra_content_before();
|
|
?>
|
|
<div id="content" class="site-content">
|
|
<div class="ast-container">
|
|
<?php astra_content_top(); ?>
|