68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
HTML
|
<!doctype html>
|
||
|
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
||
|
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
|
||
|
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
|
||
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
|
||
|
<head>
|
||
|
{% include head.html %}
|
||
|
</head>
|
||
|
|
||
|
<body class="article">
|
||
|
|
||
|
{% include chrome-frame.html %}
|
||
|
|
||
|
{% include navigation.html %}
|
||
|
|
||
|
{% if page.image.feature %}<div class="image-wrap">
|
||
|
<img src="/images/{{ page.image.feature }}" alt="{{ page.title }} feature image">
|
||
|
</div><!-- /.image-wrap -->{% endif %}
|
||
|
|
||
|
<div id="main" role="main" itemscope itemtype="http://schema.org/BlogPosting">
|
||
|
<div class="article-author-top">
|
||
|
{% include author-bio.html %}
|
||
|
</div>
|
||
|
<article itemprop="articleBody">
|
||
|
<div class="headline-wrap">
|
||
|
<h1 itemprop="name headline">{{ page.title }}</h1>
|
||
|
<h2>{{ page.tagline }}</h2>
|
||
|
</div><!--/ .headline-wrap -->
|
||
|
<div class="article-wrap">
|
||
|
{{ content }}
|
||
|
<hr />
|
||
|
<footer role="contentinfo">
|
||
|
<div class="article-author-bottom">
|
||
|
{% include author-bio.html %}
|
||
|
</div>
|
||
|
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}" itemprop="dateModified">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %} by <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name"><a href="/about" title="About {{ site.owner.name }}" itemprop="url">{{ site.owner.name }}</a></span></span>.</p>
|
||
|
</footer>
|
||
|
</div><!-- /.article-wrap -->
|
||
|
</article>
|
||
|
</div><!-- /#main -->
|
||
|
|
||
|
<div class="footer-wrap">
|
||
|
{% if site.related_posts.size %}<div class="related-articles">
|
||
|
<h4>You might also enjoy <small class="pull-right">(<a href="/articles">View all articles</a>)</small></h4>
|
||
|
<ul>
|
||
|
{% for post in site.related_posts limit:3 %}
|
||
|
{% assign match = false %}
|
||
|
{% for category in post.categories %}
|
||
|
{% if page.categories contains category %}
|
||
|
{% assign match = true %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% if match %}
|
||
|
<li><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<hr />
|
||
|
</div><!-- /.related-articles -->{% endif %}
|
||
|
<footer>
|
||
|
{% include footer.html %}
|
||
|
</footer>
|
||
|
</div><!-- /.footer-wrap -->
|
||
|
|
||
|
{% include scripts.html %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|