-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
31 lines (22 loc) · 1.05 KB
/
header.php
File metadata and controls
31 lines (22 loc) · 1.05 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
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="strict-origin-when-cross-origin">
<!-- Prevents flash of unstyled content -->
<meta name="color-scheme" content="light dark">
<!-- iOS Safari specific -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<?php wp_body_open(); ?>
<!-- Live region for screen reader announcements -->
<div id="pioneer-announcer" class="sr-only" aria-live="polite" aria-atomic="true"></div>
<!-- Skip link for accessibility -->
<a class="skip-link screen-reader-text" href="#main">Skip to content</a>
<a class="skip-link screen-reader-text" href="#navigation">Skip to navigation</a>
<?php get_template_part( 'partials/layout/header/_header' ); ?>
<?php do_action( 'pioneer_before_main' ); ?>