87b8d0b129
- Social share buttons appear at the end of every post and page unless you add share: false to their YAML Front Matter - Fixes #42
59 lines
No EOL
1.6 KiB
HTML
59 lines
No EOL
1.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="page">
|
|
|
|
{% include _browser-upgrade.html %}
|
|
|
|
{% include _navigation.html %}
|
|
|
|
{% if page.image.feature %}
|
|
<div class="image-wrap">
|
|
<img src=
|
|
{% if page.image.feature contains 'http' %}
|
|
"{{ page.image.feature }}"
|
|
{% else %}
|
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
|
{% endif %}
|
|
alt="{{ page.title }} feature image">
|
|
{% if page.image.credit %}
|
|
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
|
|
{% endif %}
|
|
</div><!-- /.image-wrap -->
|
|
{% endif %}
|
|
|
|
<div id="main" role="main">
|
|
<div class="article-author-side">
|
|
{% include _author-bio.html %}
|
|
</div>
|
|
<article class="page">
|
|
<h1>{{ page.title }}</h1>
|
|
<div class="article-wrap">
|
|
{{ content }}
|
|
{% if page.share != false %}
|
|
<hr />
|
|
{% include _social-share.html %}
|
|
{% endif %}
|
|
</div><!-- /.article-wrap -->
|
|
{% if site.owner.disqus-shortname and page.comments == true %}
|
|
<section id="disqus_thread"></section><!-- /#disqus_thread -->
|
|
{% endif %}
|
|
</article>
|
|
</div><!-- /#index -->
|
|
|
|
<div class="footer-wrap">
|
|
<footer>
|
|
{% include _footer.html %}
|
|
</footer>
|
|
</div><!-- /.footer-wrap -->
|
|
|
|
{% include _scripts.html %}
|
|
|
|
</body>
|
|
</html> |