header.php 970 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The header.
  4. *
  5. * This is the template that displays all of the <head> section and everything up until main.
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package WordPress
  10. * @subpackage Twenty_Twenty_One
  11. * @since Twenty Twenty-One 1.0
  12. */
  13. ?>
  14. <!doctype html>
  15. <html <?php language_attributes(); ?> <?php twentytwentyone_the_html_classes(); ?>>
  16. <head>
  17. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  18. <meta name="viewport" content="width=device-width, initial-scale=1" />
  19. <?php wp_head(); ?>
  20. </head>
  21. <body <?php body_class(); ?>>
  22. <?php wp_body_open(); ?>
  23. <div id="page" class="site">
  24. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'twentytwentyone' ); ?></a>
  25. <?php get_template_part( 'template-parts/header/site-header' ); ?>
  26. <div id="content" class="site-content">
  27. <div id="primary" class="content-area">
  28. <main id="main" class="site-main">