-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·89 lines (63 loc) · 3.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package understrap
*/
?>
<!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">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>">
<link rel="profile" href="//gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
<!-- Added 2018-09-15 - simpler -->
<meta name="twitter:card" value="summary" />
<meta name="twitter:url" value="http://delaysmeandeaths.org" />
<meta name="twitter:title" value="DELAYS MEAN DEATHS" />
<meta name="twitter:description" value="Learn how many have died while we wait for King County to follow through." />
<meta name="twitter:image" value="https://delaysmeandeaths.org/wp-content/uploads/2018/09/dealysmeandeaths512.png" />
<meta name="twitter:site" value="@yestoscs" />
</head>
<body <?php body_class('is-loading'); ?> id="skrollr-body">
<a name="top-position"></a>
<div class="hfeed site" id="page">
<!-- ******************* The Navbar Area ******************* -->
<div class="wrapper wrapper-fluid wrapper-navbar wrapper-variable-lg " id="wrapper-navbar">
<a class="skip-link screen-reader-text sr-only" href="#content"><?php _e( 'Skip to content',
'core-understrap' ); ?></a>
<nav class="navbar navbar-light site-navigation navbar-main" itemscope="itemscope" itemtype="//schema.org/SiteNavigationElement" data-0="position:relative;" data-top="position:fixed;top:0px;background-color:transparent;z-index:20;" >
<div class="container" >
<div class="navbar-header">
<div class="row">
<div class="col-lg-10 offset-lg-1 col-xs-12">
<!-- <div class="span9"> -->
<!-- .navbar-toggle is used as the toggle for collapsed navbar content -->
<!-- <button class="navbar-toggle navbar-toggler-right" type="button" data-toggle="modal" data-target="#ModalNav" data-backdrop="true" aria-expanded="false"
aria-label="Toggle navigation"></button> -->
<!-- Your site title as branding in the menu -->
<?php if ( ! has_custom_logo() ) { ?>
<a class="navbar-brand" rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>"
title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
<?php bloginfo( 'name' ); ?>
</a>
<?php } else {
the_custom_logo();
}
?><!-- end custom logo -->
</div>
</div>
</div>
</div> <!-- .container -->
</nav><!-- .site-navigation -->
<!-- The WordPress Off Canvas / Drop Down Menu comes here -->
<?php get_template_part( 'global-templates/modal-nav'); ?>
</div><!-- .wrapper-navbar end -->