This repository has been archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
61 lines (53 loc) · 1.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage vanlig
* @since 1.0
* @version 2.0
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head itemscope itemtype="http://schema.org/WebSite">
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- .site-wrapper -->
<div id="page" class="site">
<!-- Skip to content -->
<a href="#content" class="c-skip-to-content">Skip to Content</a>
<!-- /Skip to content -->
<!-- JS Warning -->
<noscript>
<div class="u-text-c o-callout">
<strong>JavaScript seems to be disabled in your browser.</strong><br />
You must have JavaScript enabled in your browser to utilize the full functionality of this website.
</div>
</noscript>
<!-- /JS Warning -->
<!-- IE 9 < warning -->
<!--[if lte IE 9]>
<div class="_text-c site-notice site-notice--warning">
<p>You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
</div>
<![endif]-->
<!-- /IE 9 < warning -->
<!-- skip-to-content -->
<a href="#content" class="c-skip-to-content">Skip to content</a>
<!-- /skip-to-content -->
<!-- site-header -->
<?php get_template_part('template-parts/site-header'); ?>
<!-- /site-header -->
<!-- site-content -->
<main id="content" class="site-content" role="main">