Skip to content

Commit 9e6d0ee

Browse files
Moved opening html tag to base.php
Still using the `head.php` partial at this point.
1 parent 3c8a487 commit 9e6d0ee

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

base.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
?>
77

8-
<?php get_template_part('templates/head'); ?>
8+
<!doctype html>
9+
<html class="no-js" <?php language_attributes(); ?>>
10+
<?php get_template_part('templates/head'); ?>
911
<body <?php body_class(); ?>>
1012
<!--[if lt IE 9]>
1113
<div class="alert alert-warning">

templates/head.php

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
<!doctype html>
2-
<html class="no-js" <?php language_attributes(); ?>>
3-
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="x-ua-compatible" content="ie=edge">
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<?php wp_head(); ?>
8-
</head>
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="x-ua-compatible" content="ie=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<?php wp_head(); ?>
6+
</head>

0 commit comments

Comments
 (0)