header.php 478 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="profile" href="https://gmpg.org/xfn/11" />
  7. <?php wp_head(); ?>
  8. </head>
  9. <body <?php body_class(); ?>>
  10. <?php wp_body_open(); ?>
  11. <div class="wp-site-blocks">
  12. <header class="wp-block-template-part">
  13. <?php
  14. echo gutenberg_block_template_part( 'header' );
  15. ?>
  16. </header>