-
Notifications
You must be signed in to change notification settings - Fork 3
/
header.php
52 lines (52 loc) · 1.66 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
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php bloginfo('name'); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header id="masthead">
<div class="container">
<div class="four columns">
<h1>
<a href="<?php echo home_url('/'); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="Portal Mapas Culturais" />
Portal Mapas Culturais
</a>
</h1>
</div>
<div class="eight columns">
<div class="search-input u-pull-right">
<label class="fa fa-search" for="search"></label>
<input id="search" class="search" type="text" placeholder="Busca...">
</div>
<nav id="mastnav" class="u-pull-right">
<ul>
<li>
<a href="page.html">Sobre a iniciativa</a>
<ul>
<li><a href="#">O que é</a></li>
<li><a href="#">Histórico</a></li>
<li><a href="#">Parceiros</a></li>
</ul>
</li>
<li>
<a href="blog.html">Sobre o sistema</a>
<ul>
<li><a href="#">Mapas como serviço</a></li>
<li><a href="#">Suporte ao usuário</a></li>
</ul>
</li>
<li>
<a href="page.html">Notícias</a>
</li>
<li>
<a href="page.html">Contato</a>
</li>
</u>
</nav>
</div>
</div>
</header>