-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
31 lines (28 loc) · 1.09 KB
/
header.php
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="format-detection" content="telephone=no">
<meta name="tagline" content="https://feodoraxis.ru/">
<meta name="theme-color" content="#FFF">
<?php wp_head(); ?>
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<?php
wp_nav_menu( [
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'navbar-nav me-auto mb-2 mb-lg-0',
'walker' => new Feodoraxis_Walker_Nav_Menu(),
] );
?>
</div>
</div>
</nav>
</div>