Use <header>, <main>, and <footer>
authorChris Barrick <cbarrick1@gmail.com>
Fri, 8 Aug 2014 07:27:26 +0000 (03:27 -0400)
committerChris Barrick <cbarrick1@gmail.com>
Thu, 21 Aug 2014 04:37:37 +0000 (00:37 -0400)
_layouts/default.html

index 1b8ca2e0c9fa2ce8b6ca89e114d19836fb10c547..cbd89562b04118845711ff890d7ec2ba30e268b4 100644 (file)
@@ -6,20 +6,22 @@
   <body>
 
     <div class="container content">
-      <div class="masthead">
+      <header class="masthead">
         <h3 class="masthead-title">
           <a href="{{ site.baseurl }}" title="Home">{{ site.title }}</a>
           <small>{{ site.tagline }}</small>
         </h3>
-      </div>
+      </header>
 
-      {{ content }}
+      <main>
+        {{ content }}
+      </main>
 
-      <div class="footer">
+      <footer class="footer">
         <small>
           &copy; <time datetime="{{ site.time | date_to_xmlschema}}">{{ site.time | date: '%Y' }}</time>. All rights reserved.
         </small>
-      </div>
+      </footer>
     </div>
 
   </body>