Add missing things for theme
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 5 Feb 2015 14:32:16 +0000 (09:32 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 5 Feb 2015 14:32:16 +0000 (09:32 -0500)
wp_head() not called in header.php
wp_title() not called in header.php

header.php

index 00d0483..ea7455e 100755 (executable)
@@ -3,17 +3,18 @@
   <head>
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>Tom's Mom's Cookies</title>
+    <title><?php wp_title();?></title>
     <link rel="stylesheet" href=" <?php echo get_stylesheet_directory_uri(); ?>/css/app.css" />
     <link href='http://fonts.googleapis.com/css?family=Emilys+Candy' rel='stylesheet' type='text/css'>
     <script src="<?php echo get_template_directory_uri(); ?>/bower_components/modernizr/modernizr.js"></script>
+    <?php wp_head();?>
   </head>
   <body>
     <div class="off-canvas-wrap" data-offcanvas>
     <div class="inner-wrap">
         <div class="content">
             <div class="top-bottom">
-            <div class="container">    
+            <div class="container">
                 <div class="headerWrapper">
                     <header>
                         <div class="row">
@@ -59,7 +60,7 @@
                     <scetion class="left-small show-for-small-down">
                         <a href="#"><img src="<?php echo get_template_directory_uri(); ?>/assets/cart.png"></a>
                     </scetion>
-                </nav>    
+                </nav>
                 <aside class="right-off-canvas-menu">
                     <ul class="right-off-canvas-list">
                         <li><a href="#">Cookie Shop</a></li>
@@ -73,4 +74,4 @@
                             </ul>
                         </li>
                     </ul>
-                </aside>
\ No newline at end of file
+                </aside>