-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
56 lines (51 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<?php echo dft_analytics_script(); ?>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name="theme-color" content="<?= COR_BARRA_NAVEGADOR ?>">
<meta name="format-detection" content="telephone=no"/>
<?php wp_head(); ?>
<?php
/**
* Caso a fonte existe no Google Fonts, fazer da seguinte
* forma para melhorar a performance:
*
* <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700" rel="stylesheet">
*/
?>
<!-- Fontes
<style type="text/css">
@font-face {
font-family: "Arial";
src: url(<?= FONTS_DIR ?>/light.otf);
font-weight: 300;
}
@font-face {
font-family: "Arial";
src: url(<?= FONTS_DIR ?>/regular.otf);
font-weight: 400;
}
@font-face {
font-family: "Arial";
src: url(<?= FONTS_DIR ?>/media.otf);
font-weight: 500;
}
@font-face {
font-family: "Arial";
src: url(<?= FONTS_DIR ?>/bold.otf);
font-weight: 700;
}
</style>
-->
</head>
<body <?php body_class(); ?>>
<header class="main-header">
<div class="header-grid">
<?php the_custom_logo(); ?>
<nav class="nav-menu" role="navigation">
<?php wp_nav_menu( array ( 'menu' => 'Menu Principal' ) ); ?>
</nav>
</div>
</header>