header.php 860 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package Seedlet
  10. * @since 1.0.0
  11. */
  12. ?><!doctype html>
  13. <html <?php language_attributes(); ?>>
  14. <head>
  15. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  16. <meta name="viewport" content="width=device-width, initial-scale=1" />
  17. <link rel="profile" href="https://gmpg.org/xfn/11" />
  18. <?php wp_head(); ?>
  19. </head>
  20. <body <?php body_class(); ?>>
  21. <?php wp_body_open(); ?>
  22. <div id="page" class="site">
  23. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seedlet' ); ?></a>
  24. <?php get_template_part( 'template-parts/header/header-content' ); ?>
  25. <div id="content" class="site-content">