-
Notifications
You must be signed in to change notification settings - Fork 3
/
header.php
44 lines (38 loc) · 1.11 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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package lsx
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php lsx_head_top(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1" >
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php lsx_head_bottom(); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class( 'lsx' ); ?>>
<?php wp_body_open(); ?>
<?php lsx_body_top(); ?>
<div class="header-wrap">
<?php lsx_header_before(); ?>
<header id="masthead" class="<?php lsx_header_classes(); ?>" role="banner">
<?php lsx_header_top(); ?>
<div class="container">
<?php lsx_nav_before(); ?>
<?php lsx_nav_menu(); ?>
<?php lsx_nav_after(); ?>
<?php lsx_header_bottom(); ?>
</div>
</header>
<?php lsx_header_after(); ?>
</div>
<?php lsx_header_wrap_after(); ?>
<div class="wrap container" role="document" tabindex="-1">
<div class="content role row">
<?php lsx_header_wrap_container_top(); ?>