forked from BralexMtz/bralex-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·31 lines (29 loc) · 1.04 KB
/
header.php
File metadata and controls
executable file
·31 lines (29 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head() ?>
</head>
<body>
<header>
<div class="container">
<div class="row align-items-center">
<div class="col-4">
<a href="<?php echo get_site_url(); ?>">
<img src="<?php echo get_template_directory_uri()?>/assets/img/logo.png" alt="logo">
</a>
</div>
<div class="col-8">
<nav>
<?php wp_nav_menu(array(
'theme_location'=>'top_menu', // lugar donde se encuentra el top menu
'menu_class' => 'menu-principal', //clase al ul del menu
'container_class'=> 'container-menu' // clase al div que contendra al ul
) );
?>
</nav>
</div>
</div>
</div>
</header>