-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
66 lines (60 loc) · 2.79 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title><?php wp_title( '|', true, 'right' ); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<meta name="viewport" content="width=device-width">
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href="<?php echo get_template_directory_uri(); ?>/style.css" type="text/css" rel="stylesheet" media="all">
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/main.css" type="text/css" rel="stylesheet" media="all">
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/styles.css" type="text/css" rel="stylesheet" media="all">
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/registration.css" type="text/css" rel="stylesheet" media="all">
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/virada.css" type="text/css" rel="stylesheet" media="all">
<script src="https://use.fontawesome.com/a25e743b24.js"></script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12446729-1', 'auto');
ga('send', 'pageview');
</script>
<?php wp_head(); ?>
</head>
<body>
<header class="headerAa">
<nav class="headerAa-menu">
<ul class="headerAa-menu-list">
<li class="headerAa-menu-list-item">
<a href="http://agilealliance.org/pt/">Agile Alliance</a>
</li>
<li class="headerAa-menu-list-item">
<a href="http://agilealliance.org/pt/membresia/">Membros</a>
</li>
<li class="headerAa-menu-list-item logo">
<a href="http://agilealliance.org/pt/">
<img src="<?php echo get_template_directory_uri(); ?>/assets/img/logoAgileAlliance.png" alt="Logo da Agile Alliance">
</a>
</li>
<li class="headerAa-menu-list-item">
<?php pll_the_languages(array( 'show_flags' => 1,'show_names' => 0, 'hide_current' => 1 ));?>
</li>
</ul>
</nav>
</header>
<main>
<header class="site-header">
<div class="container">
<h1>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo get_template_directory_uri(); ?>/assets/img/logo-agile-brazil.svg" alt="Logo Agile Brazil"></a>
</h1>
<nav class="main-menu">
<ul>
<?php wp_nav_menu_no_ul(); ?>
</ul>
</nav>
</div>
</header>