2024-05-29 01:20:50 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
|
|
<!-- Basic Page Needs
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
|
|
<meta name="description" content="">
|
|
|
|
|
<meta name="author" content="">
|
|
|
|
|
|
|
|
|
|
<!-- Mobile Specific Metas
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php wp_head() ?>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<!-- Header html starts here
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
|
|
|
<?php
|
|
|
|
|
wp_nav_menu(
|
|
|
|
|
array(
|
|
|
|
|
'menu' => 'primary',
|
|
|
|
|
'container' => '',
|
|
|
|
|
'theme_location' => 'primary',
|
|
|
|
|
'items_wrap' => '<ul class="test" id="test">%3$s</ul>'
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
?>
|