This repository was archived by the owner on Dec 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
53 lines (40 loc) · 2.1 KB
/
header.php
File metadata and controls
53 lines (40 loc) · 2.1 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
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo get_template_directory_uri(); ?>/dist/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo get_template_directory_uri(); ?>/dist/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo get_template_directory_uri(); ?>/dist/images/favicon/favicon-16x16.png">
<link rel="manifest" href="<?php echo get_template_directory_uri(); ?>/dist/images/favicon/manifest.json">
<link rel="mask-icon" href="<?php echo get_template_directory_uri(); ?>/dist/images/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<a href="#main_content" class="display--hidden">Skip to Main Content</a>
<aside>
<header class="header" role="banner">
<div class="logo">
<a href="<?php echo home_url(); ?>">
<img class="logo__icon" src="<?php echo get_template_directory_uri(); ?>/dist/images/logo.svg" alt="Logo" width="100" height="47">
<p class="logo__text"><?php printf( get_bloginfo ( 'name' ) ); ?></p>
</a>
</div>
<label for="hamburger">Menu</label>
<input name="hamburger" type="checkbox" id="hamburger" class="display--hidden"></input>
<div class="navigation-container">
<nav class="nav" role="navigation" aria-label="Primary">
<?php gameui_nav(); ?>
</nav>
<nav class="nav" role="navigation" aria-label="Secondary">
<?php get_template_part('partials/social', 'follow'); ?>
<?php get_template_part('partials/copyright'); ?>
</nav>
</div>
</header>
</aside>