This repository has been archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
68 lines (56 loc) · 2.31 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
67
68
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<?php wp_head(); ?>
<!--[if (gte IE 6)&(lte IE 8)]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<?php get_template_part('partials/_favicons'); ?>
</head>
<body <?php body_class('offcanvas-relative'); ?>>
<div class="container container-white container-logo clearfix hidden-xs">
<div class="">
<div class="col-sm-4 text-right">
<a href="/" class="logo"><img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/logo-bilingual.png" alt="eLearning Pioneers" /></a>
</div>
<div class="col-sm-4 text-right pull-right social-icons">
<a href="https://www.youtube.com/channel/UCeKowwZYjlDRqEVagzLICuQ"><i class="fa fa-youtube"></i></a>
</div>
</div>
</div>
<div class="navbar container navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="offcanvas" data-target=".navbar-offcanvas" data-canvas="body">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-offcanvas offcanvas">
<a class="navbar-brand visible-xs" href="/">eLearning Pioneers</a>
<?php
wp_nav_menu( array(
'menu' => 'primary',
'theme_location' => 'primary',
'depth' => 2,
'container' => false,
'menu_class' => 'nav navbar-nav',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker())
);
?>
</div>
</div>
<div class="container container-logo-xs visible-xs-block">
<div class="row">
<div class="col-sm-12 text-center">
<a href="/"><img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/img/logo-bilingual.png" alt="eLearning Pioneers" /></a>
</div>
</div>
</div>