diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-12-27 16:42:05 -0500 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-12-27 16:42:05 -0500 |
commit | 3b563b3b82f4b4f20e66e1f9aea6dc16a08fc802 (patch) | |
tree | d2a1ee43c5c7cd74bd0ad98b5ab76899788bcf49 /_layouts | |
parent | a2bf1568d77fb8644bd65b8d2edeacd1e34dc7f8 (diff) |
Clean up markup & styles
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/master.html | 10 | ||||
-rw-r--r-- | _layouts/post.html | 19 |
2 files changed, 16 insertions, 13 deletions
diff --git a/_layouts/master.html b/_layouts/master.html index c1839b1..92f6006 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -6,12 +6,14 @@ <meta charset="UTF-8"> <style type="text/css"> - {% capture inline %} - {% include inline.scss %} + {% capture fonts %} + {% include fonts.scss %} {% endcapture %} - {{ inline | scssify }} + {{ fonts | scssify }} </style> + <link rel="stylesheet" type="text/css" href="/assets/stylesheets/site.css"> + <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"> <link rel="shortcut icon" href="/assets/images/icons/favicon.ico" sizes="128x128"> @@ -90,7 +92,7 @@ <footer class="grid_wide"> <div><a href="/">Ben</a> / <a href="/pgp/">PGP</a> / <a href="/theatre/">Theatre</a></div> <div><a href="mailto:hi@benburwell.com">Email</a> / <a href="https://twitter.com/bburwell">Twitter</a> / <a href="https://ello.co/benburwell">Ello</a> / <a href="https://github.com/benburwell">GitHub</a></div> - <div><a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC-BY</a></div> + <div><a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a></div> </footer> </div> </body> diff --git a/_layouts/post.html b/_layouts/post.html index be602fb..ca44314 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,12 +2,13 @@ layout: master --- -<section class="article"> - - <h1>{{ page.title }}</h1> - - <div class="date">{{ page.date | date: "%A, %-d %B %Y" }}</div> - - {{ content }} - -</section> +<article itemscope itemtype="http://schema.org/BlogPosting" class="article"> + <header> + <h1 itemprop="headline">{{ page.title }}</h1> + <div class="date"><time itemprop="datePublished">{{ page.date | date: "%A, %-d %B %Y" }}</time></div> + </header> + + <div itemprop="articleBody"> + {{ content }} + </div> +</article> |