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
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
2024-05-29 21:19:48 +00:00
|
|
|
|
<nav>
|
|
|
|
|
<div class="main-menu-wrapper">
|
|
|
|
|
|
|
|
|
|
<?php
|
2024-05-29 01:20:50 +00:00
|
|
|
|
wp_nav_menu(
|
|
|
|
|
array(
|
|
|
|
|
'menu' => 'primary',
|
|
|
|
|
'container' => '',
|
|
|
|
|
'theme_location' => 'primary',
|
2024-05-29 21:19:48 +00:00
|
|
|
|
'items_wrap' => '<input type="radio" name="slide" id="open-btn"><input type="radio" name="slide" id="cancel-btn"><ul class="nav-links" id="test"><label for="cancel-btn" class="menu-cancel-btn"><i class="fa fa-remove" aria-hidden="true"></i></label>%3$s</ul><label for="open-btn" class="menu-open-btn"><i class="fa fa-bars" aria-hidden="true"></i></label>'
|
2024-05-29 01:20:50 +00:00
|
|
|
|
)
|
|
|
|
|
);
|
2024-05-29 21:19:48 +00:00
|
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|