28 lines
566 B
PHP
28 lines
566 B
PHP
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
|
|
<head>
|
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><?php wp_title(); ?></title>
|
|
|
|
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
|
|
<?php wp_head(); ?>
|
|
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
|
|
<header>
|
|
</header>
|
|
|
|
<!-- Nav -->
|
|
<?php wp_nav_menu( array(
|
|
'theme_location' => 'header-menu',
|
|
'container' => 'nav',
|
|
'container_class' => 'mfwpt_menu'
|
|
) );?>
|
|
<!-- Nav -->
|
|
|