-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
37 lines (27 loc) · 1.28 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
<?php
/**
* The header.
*
* Template that displays all of the <head> section. #main is opened here and closed in footer.php.
*
* @package wp-excellent
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#FFD000">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<link rel="icon" href="<?php echo esc_url(get_template_directory_uri()); ?>/assets/images/favicons/favicon.ico" sizes="any">
<link rel="icon" href="<?php echo esc_url(get_template_directory_uri()); ?>/assets/images/favicons/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="<?php echo esc_url(get_template_directory_uri()); ?>/assets/images/favicons/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" crossorigin="use-credentials" href="<?php echo esc_url(get_template_directory_uri()); ?>/site.webmanifest">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<a href="#main" class="skip-link | button"> <?php esc_html_e('Jump to main content', 'wp-excellent'); ?></a>
<?php get_template_part('template-parts/header/site', 'header'); ?>
<main id="main" class="flow">