-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
47 lines (44 loc) · 2.45 KB
/
header.php
File metadata and controls
47 lines (44 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title><?php echo esc_html__(the_title());?></title>
<!-- Favicons -->
<link href="<?php echo esc_url(get_site_icon_url()); ?>" type="image/png" rel="icon">
<?php wp_head();?>
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center sticky-top">
<div class="container position-relative d-flex align-items-center justify-content-between">
<a href="<?php echo esc_url(home_url());?>" class="logo d-flex align-items-center me-auto me-xl-0">
<!-- Uncomment the line below if you also wish to use an image logo -->
<img src="<?php $logo_url = wp_get_attachment_image_url(get_theme_mod('custom_logo'), 'full'); if($logo_url): echo esc_url($logo_url); endif; ?>" alt="">
<h1 class="sitename"><?php echo esc_html__(get_bloginfo("name"));?></h1>
<span>.</span>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active"><?php echo esc_html__('Home');?><br></a></li>
<li><a href="<?php if(!is_front_page()): echo home_url(); endif;?>#about"><?php echo esc_html__('About');?></a></li>
<li><a href="<?php if(!is_front_page()): echo home_url(); endif;?>#menu"><?php echo esc_html__('Menu');?></a></li>
<li><a href="<?php if(!is_front_page()): echo home_url(); endif;?>#events"><?php echo esc_html__('Events');?></a></li>
<li><a href="<?php if(!is_front_page()): echo home_url(); endif;?>#chefs"><?php echo esc_html__('Chefs');?></a></li>
<li><a href="<?php if(!is_front_page()): echo home_url(); endif;?>#gallery"><?php echo esc_html__('Gallery')?></a></li>
<?php if(has_nav_menu('primary-menu')):?>
<li class="dropdown"><a href="<?php echo home_url(); ?>"><span><?php echo esc_html__('More')?></span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<?php
wp_nav_menu(array(
'theme_location' => 'primary-menu', // Use the registered menu location
'container' => 'ul', // Wrap in a <nav> tag
));
?>
</li>
<?php endif;?>
<li><a href="#contact">Contact</a></li>
</ul>
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
<a class="btn-getstarted" href="index.html#book-a-table">Book a Table</a>
</div>
</header>