This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
65 lines (54 loc) · 1.92 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
<?php
/**
* Header file for the ETHDB theme.
*
* @package WordPress
* @subpackage ETHDB
* @since EdTech Hub Database 0.1
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
wp_body_open();
?>
<div class="prototype-bar">
<div class="container">
<p><span class="badge badge-prototype">PROTOTYPE</span> <strong>This is a prototype.</strong> We're continually improving the information on this site. Please <a href="/feedback" title="send us feedback">give us feedback</a>.</p>
</div>
</div>
<header>
<div class="container">
<div class="row">
<div class="col-sm-12 col-lg-6">
<div class="brand">
<p class="brand-name"><a href="https://edtechhub.org">The EdTech Hub</a></p>
</div>
</div>
<div class="col">
<p class="site-name"><a href="<?php bloginfo('home'); ?>"><?php bloginfo('name'); ?></a></p>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<?php wp_nav_menu(array(
'menu' => 'ethdb-header-menu',
'menu_class' => 'navbar-nav',
'depth' => 1
)); ?>
</div>
<?php get_search_form(); ?>
</nav>
</div>
</header>
<main id="site-content" role="main">
<div class="container">