-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
75 lines (69 loc) · 2.8 KB
/
header.php
File metadata and controls
75 lines (69 loc) · 2.8 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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:type" content="article">
<meta property="og:title" content="<?php the_title(); ?>">
<meta property="og:description" content="<?php echo get_the_excerpt(); ?>">
<meta property="og:image" content="<?php echo get_the_post_thumbnail_url(); ?>">
<meta property="og:url" content="<?php the_permalink(); ?>">
<meta property="og:site_name" content="LearningLab">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="<?php the_title(); ?>">
<meta name="twitter:description" content="<?php echo get_the_excerpt(); ?>">
<meta name="twitter:image" content="<?php echo get_the_post_thumbnail_url(); ?>">
<?php
wp_head();
?>
</head>
<body>
<div class="cabecalho">
<header>
<?php
if (function_exists('the_custom_logo')) {
the_custom_logo();
} else {
?>
<a href="<?php echo home_url('/'); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/assets/imgs/logo-branca.png" alt="Logo Alternativa">
</a>
<?php
}
?>
<nav>
<input type="checkbox" id="checkbox-menu">
<div class="icone-menu-mobile">
<label class="label-header" for="checkbox-menu">
<span></span>
<span></span>
<span></span>
</label>
</div>
<ul class="nav-menu">
<?php
wp_nav_menu(
array(
'menu' => 'primary',
'container' => '',
'theme_location' => 'primary',
'items_wrap' => '%3$s',
'depth' => 2
)
);
?>
<li class="search-container">
<button id="search-btn">
<i class="fas fa-search"></i>
</button>
<form id="search-form" role="search" method="get" action="<?php echo esc_url(home_url('/')); ?>">
<div class="search-wrapper">
<input type="search" name="s" placeholder="Digite sua busca..." required>
<button type="submit"><i class="fas fa-arrow-right"></i></button>
</div>
</form>
</li>
</ul>
</nav>
</header>
</div>