header.php 898 B

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