header.php 835 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3. <head>
  4. <!--
  5. . . . . . .
  6. . . ...-..-| |-. .-. .-.-..-| .-.. ...-|
  7. ` ` '' '`-'-' '-`-`-' ' '`-'-`-`-` '`-'-
  8. -->
  9. <meta charset="UTF-8" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  12. <meta name="description" content="<?php dw_meta_desc();?>"/>
  13. <?php wp_head(); ?>
  14. <?php if ( is_singular() ) echo '<link rel="canonical" href="' . get_permalink() . '" />'; ?>
  15. </head>
  16. <body <?php page_bodyclass(); ?>>
  17. <?php
  18. /* Header chrome (navbar + offcanvas nav) lives in parts/header.html (block template
  19. part), shared with the FSE flip; rendered here for the classic theme. The document
  20. <head> + <body> open stay in PHP — they can't live in a block part. */
  21. block_template_part( 'header' );
  22. ?>