-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
51 lines (42 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<?php wp_head(); ?>
<meta name="description" content="<?php echo get_bloginfo( 'description' ); ?>">
<meta name="author" content="Komuhn">
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/css/main.css">
<link rel="stylesheet" media="screen and (min-width: 1025px)" href="<?php echo get_stylesheet_directory_uri(); ?>/css/full.css">
</head>
<body <?php body_class(); ?> >
<header class="main-header">
<h1 class="logo">
<a href="<?php echo get_home_url(); ?>">
<span>INECC - People's Voices in Policy Choices</span>
<?php if ( is_home() ) : ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo.svg" alt="Logo" />
<?php elseif ( is_page( 'menu' ) ) : ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo-small-white.svg" alt="Logo" />
<?php else : ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo-small.svg" alt="Logo" />
<?php endif; ?>
</a>
</h1>
<a class="button icon donate" href="<?php echo esc_url( get_permalink( get_page_by_title( 'Donate' ) ) ); ?>"></a>
<nav class="main-nav" id="main-nav">
<?php
wp_nav_menu( array(
'menu' => 'top-menu',
'container' => ''
));
?>
<?php get_template_part( 'template-parts/social', 'links' ); ?>
<div class="buttons">
<a class="logo" href="<?php echo get_home_url(); ?>">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo-small-white.svg" alt="Logo" />
</a>
<a class="menu" href="#menu">Menu</a>
</div>
</nav>
<a class="sw-tab" title="Learn more" href="<?php echo esc_url( get_permalink( get_page_by_title( 'About us' ) ) ); ?>#sustainability"><span><span>This is a</span> low-carbon website</span></a>
</header>