-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
31 lines (24 loc) · 927 Bytes
/
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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <main id="main">
*
* @package sosimple
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta name="generator" content="<?php echo esc_attr( sprintf( __( 'So Simple (%s) - Designed and built by Press75', 'sosimple' ), THEME_VERSION ) ); ?>">
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
<?php if ( is_home() && ! is_paged() && get_theme_mod( 'intro_page' ) ) : ?>
<?php get_template_part( 'templates/parts/intro' ); ?>
<?php endif; ?>
<section id="content" class="site-content">