mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 19:13:44 +03:00
20 lines
510 B
PHP
20 lines
510 B
PHP
<?php
|
|
/**
|
|
* The Header template for pages in our theme.
|
|
*
|
|
* Displays all of the <head> section and everything up till <div id="content">
|
|
*
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package WordPressdotorg\Theme
|
|
*/
|
|
|
|
namespace WordPressdotorg\Theme;
|
|
|
|
get_template_part( 'header', 'wporg' );
|
|
?>
|
|
<div id="page" class="site">
|
|
<a class="skip-link screen-reader-text" href="#main"><?php esc_html_e( 'Skip to content', 'wporg' ); ?></a>
|
|
|
|
<div id="content" class="site-content row gutters">
|