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