template/wordpress/header.php in edge_framework-0.9.12 vs template/wordpress/header.php in edge_framework-0.10.0
- old
+ new
@@ -1,21 +1,28 @@
<!DOCTYPE html>
-<html lang="en">
+<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8">
- <meta name="viewport" content="width=device-width" />
- <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
- <meta name="description" content="<?php bloginfo('description'); ?>" />
-
+ <meta name="viewport" content="width=device-width">
+
+ <!-- WEBSITE DETAIL -->
+ <title><?php bloginfo("name"); ?> <?php wp_title(); ?></title>
+ <meta name="description" content="<?php bloginfo('description'); ?>">
+
<!-- FAVICON -->
- <link rel="icon" type="image/png" href="<?php img(); ?>/favicon.png">
- <link rel="apple-touch-icon-precomposed" href="<?php img(); ?>/favicon-big.png" />
+ <link rel="icon" href="<?php img(); ?>/favicon.png">
+ <link rel="apple-touch-icon-precomposed" href="<?php img(); ?>/favicon-big.png">
- <!-- VENDOR -->
- <script type="text/javascript" src="<?php js(); ?>/vendor/custom.modernizr.js"></script>
+ <!-- JAVASCRIPT that must load first -->
+ <script src="<?php js(); ?>/vendor/custom.modernizr.js"></script>
+
+ <!-- STYLESHEET -->
<link rel="stylesheet" href="<?php css(); ?>/framework.css">
-
- <!-- APP Specific -->
<link rel="stylesheet" href="<?php css(); ?>/app.css">
+
+ <!-- PLUGIN HOOKS -->
+ <?php wp_head(); ?>
</head>
<body>
-<div id="main-wrapper">
+<div id="main-wrapper">
+
+ <header class="main-header"></header>
\ No newline at end of file