-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·54 lines (51 loc) · 2.16 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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WP_Bootstrap_Starter
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="h-100">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class('h-100'); ?>>
<div id="page" class="site d-flex flex-column h-100">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'timeline-theme' ); ?></a>
<header class="flex-shrink-0">
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
<div class="container">
<a class="navbar-brand" href="<?php echo home_url(); ?>">
<img class="mr-0 mr-md-1" src="<?php echo get_template_directory_uri() . '/inc/assets/images/FITmuseum_gold.png'; ?>" alt="Museum at FIT Logo"/>
<br class="d-md-none">
<span class="align-middle">Exhibitions Timeline</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-nav" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<?php
wp_nav_menu(array(
'theme_location' => 'primary',
'container' => 'div',
'container_id' => 'main-nav',
'container_class' => 'collapse navbar-collapse justify-content-end',
'menu_id' => false,
'menu_class' => 'navbar-nav ml-auto',
'depth' => 3,
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker()
));
?>
</div>
</nav>
</header>
<main id="content" class="flex-shrink-0 mb-5">