-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
28 lines (28 loc) · 903 Bytes
/
header.php
File metadata and controls
28 lines (28 loc) · 903 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title('|', true, 'right'); ?>SLAM HUB</title>
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/header.css">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header>
<div class="header-container">
<div class="logo-container">
</div>
<div class="navigation-bar">
<?php
wp_nav_menu(array(
'theme_location' => 'main-menu',
'container' => false,
'menu_class' => 'menu',
'fallback_cb' => false
));
?>
</div>
<div class="connection-button">
</div>
</div>
</header>