-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.php
56 lines (51 loc) · 2.51 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 <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title(''); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<!-- Facebook preview ? -->
<meta property="og:title" content="Japan Impact" />
<meta property="og:url" content="http://www.japan-impact.ch" />
<meta property="og:image" content="https://www.japan-impact.ch/wp-content/uploads/2016/12/JI2017_Poster_site.png" />
<meta property="og:description" content="<?php bloginfo('description'); ?>" />
<!-- favicon -->
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/assets/images/favicon.ico" type ="image/x-icon" />
<link rel="icon" href="<?php echo get_template_directory_uri(); ?>/assets/images/favicon.ico" type ="image/x-icon"/>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img alt="Japan Impact" src="<?php get_logo_url(); ?>" width="140%">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<?php get_template_part('inc/navigation');?>
</ul>
</div>
<?php get_template_part('inc/countdown');?>
</nav>