-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
44 lines (42 loc) · 1.86 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
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
# The header of my theme.
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="stylesheet" type="text/css" href="https://www.emilgadzhiyev.me/wp-content/themes/emilgadzhiyev/style.css?v=sex">
<?php wp_head(); ?>
</head>
<body>
<div class="container layout">
<header class="layout__header">
<div class="row align-items-center">
<div class="col-12 col-lg-4 text-center text-lg-left">
<div class="logo text-center text-lg-left">
<a href="https://www.emilgadzhiyev.me/">
<div class="logo__name">
<img alt="Emil Gadzhiyev's" src="https://www.emilgadzhiyev.me/wp-content/themes/emilgadzhiyev/assets/svg/logo-name.svg">
</div>
<div class="logo__slogan">
<img alt="Web&Entrepreneurship" src="https://www.emilgadzhiyev.me/wp-content/themes/emilgadzhiyev/assets/svg/logo-slogan.svg">
</div>
</a>
</div>
</div>
<div class="col-12 col-lg-8 text-center text-lg-right">
<nav class="main-menu">
<?php
wp_nav_menu(array(
'theme_location' => 'top',
'container' => '',
'items_wrap' => '%3$s',
'walker' => new Eg_Top_Menu_Walker,
));
?>
</nav>
</div>
</div>
</header>