-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
32 lines (27 loc) · 1.18 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
<!doctype html>
<html <?php language_attributes() ?> class="no-js" lang="en-GB">
<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, shrink-to-fit=no">
<!-- Theme Colour -->
<meta name="theme-color" content="#000">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head() ?>
<!-- Preconnect to Google Font Services -->
<?php /*
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&family=Poppins:wght@100;300;400;500;700&display=swap" rel="stylesheet">
*/ ?>
<!-- Defers load of style.css -->
<link rel="preload" href="<?= mix("/assets/css/style.css") ?>" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="<?= mix("/assets/css/style.css") ?>">
</noscript>
<?= \Toybox\Core\Components\Globals::headerCode() ?>
</head>
<body <?php body_class() ?>>
<header>
<!-- Header -->
</header>