65 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
<!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="post">
 | 
						|
 | 
						|
{% include _browser-upgrade.html %}
 | 
						|
 | 
						|
{% include _navigation.html %}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<div id="main" role="main">
 | 
						|
  <div class="article-author-side">
 | 
						|
    {% include _author-bio.html %}
 | 
						|
  </div>
 | 
						|
  <article class="post">
 | 
						|
    <div class="headline-wrap">
 | 
						|
      {% if page.link %}
 | 
						|
        <h1><a href="{{ page.link }}">{{ page.title }}</a></h1>
 | 
						|
      {% else %}
 | 
						|
        <h1><a href="{{ site.url }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
 | 
						|
      {% endif %}
 | 
						|
    </div><!--/ .headline-wrap -->
 | 
						|
    <div class="article-wrap">
 | 
						|
      {{ content }}
 | 
						|
      <hr />
 | 
						|
      <footer role="contentinfo">
 | 
						|
        {% if page.share != false %}{% include _social-share.html %}{% endif %}
 | 
						|
        <p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
 | 
						|
      </footer>
 | 
						|
    </div><!-- /.article-wrap -->
 | 
						|
  {% if site.owner.disqus-shortname and page.comments == true %}
 | 
						|
    <section id="disqus_thread"></section><!-- /#disqus_thread -->
 | 
						|
  {% endif %}
 | 
						|
  </article>
 | 
						|
</div><!-- /#main -->
 | 
						|
 | 
						|
<div class="footer-wrap">
 | 
						|
  {% if site.related_posts.size > 0 %}
 | 
						|
  <div class="related-articles">
 | 
						|
  <h4>You might also enjoy <small class="pull-right">(<a href="{{ site.url }}/posts/">View all posts</a>)</small></h4>
 | 
						|
    <ul>
 | 
						|
    {% for post in site.related_posts limit:3 %}
 | 
						|
      <li><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
 | 
						|
    {% endfor %}
 | 
						|
    </ul>
 | 
						|
    <hr />
 | 
						|
  </div><!-- /.related-articles -->
 | 
						|
  {% endif %}
 | 
						|
  <footer>
 | 
						|
    {% include _footer.html %}
 | 
						|
  </footer>
 | 
						|
</div><!-- /.footer-wrap -->
 | 
						|
 | 
						|
{% include _scripts.html %}
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |