-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·56 lines (43 loc) · 1.94 KB
/
header.php
File metadata and controls
executable file
·56 lines (43 loc) · 1.94 KB
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
<?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 uri-tedx
* @todo menu icon on mobile should be a button, not checkbox
*/
?>
<! DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
<link rel="icon" type="image/png" href="<?php echo get_stylesheet_directory_uri() . '/images/favicon.png'; ?>">
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div id="page" class="site">
<div id="masthead">
<header id="brandbar" class="site-header" role="banner">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e('Skip to content', 'uri'); ?></a>
<div class="content-width">
<a href="https://www.uri.edu/tedx/" title="TEDxURI Home" aria-label="Ted-X URI Home"><img src="<?php echo get_stylesheet_directory_uri() . '/images/logo_uri_white.png'; ?>" alt="TEDxURI" /></a>
<input type="checkbox" id="tedx-nav-toggle" role="presentation" aria-label="Open the TEDxURI site menu when browsing on mobile">
<label for="tedx-nav-toggle" id="tedx-nav-label"><span>Menu</span></label>
<nav id="tedx-nav" aria-label="Site Menu">
<ul>
<li id="ln-talks"><a href="https://www.uri.edu/tedx/talks">Talks</a></li>
<li id="ln-speakers"><a href="https://www.uri.edu/tedx/presenters">Presenters</a></li>
<li id="ln-attend"><a href="https://www.uri.edu/tedx/attend">Attend</a></li>
<li id="ln-about"><a href="https://www.uri.edu/tedx/about">About</a></li>
</ul>
</nav>
</div>
</header><!-- #brandbar -->
</div>
<div id="content" class="site-content">