template/wordpress/header.php in edge_framework-0.6.0 vs template/wordpress/header.php in edge_framework-0.6.1

- old
+ new

@@ -1,22 +1,21 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width" /> - <title><?php wp_title( '|', true, 'right' ); ?></title> - <meta name="description" content="This is a description of your website" /> - <meta name="keywords" content="search, key, word," /> <!-- Comma-separated list for Search keyword --> + <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> + <meta name="description" content="<?php bloginfo('description'); ?>" /> <!-- FAVICON --> - <link rel="icon" type="image/png" href="<?php echo img(); ?>/favicon.ico"> - <link rel="apple-touch-icon-precomposed" href="<?php echo img(); ?>/favicon-big.png" /> + <link rel="icon" type="image/png" href="<?php img(); ?>/favicon.ico"> + <link rel="apple-touch-icon-precomposed" href="<?php img(); ?>/favicon-big.png" /> <!-- VENDOR --> - <script type="text/javascript" src="<?php echo js(); ?>/vendor/custom.modernizr.js"></script> - <link rel="stylesheet" href="<?php echo css(); ?>/edge-framework.css"> + <script type="text/javascript" src="<?php js(); ?>/vendor/custom.modernizr.js"></script> + <link rel="stylesheet" href="<?php css(); ?>/edge-framework.css"> <!-- APP Specific --> - <link rel="stylesheet" href="<?php echo css(); ?>/app.css"> + <link rel="stylesheet" href="<?php css(); ?>/app.css"> </head> <body> <div id="main-wrapper"> \ No newline at end of file