Merge pull request #1471 from JulienMelissas/move-html-to-base

Moved opening html tag to base.php
This commit is contained in:
Ben Word
2015-05-17 11:20:32 -05:00
2 changed files with 9 additions and 9 deletions

View File

@@ -5,7 +5,9 @@ use Roots\Sage\Wrapper;
?> ?>
<?php get_template_part('templates/head'); ?> <!doctype html>
<html class="no-js" <?php language_attributes(); ?>>
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>> <body <?php body_class(); ?>>
<!--[if lt IE 9]> <!--[if lt IE 9]>
<div class="alert alert-warning"> <div class="alert alert-warning">

View File

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