mirror of
https://github.com/MinimalBible/MinimalBible.github.io
synced 2024-11-12 19:18:33 -05:00
51 lines
2.1 KiB
HTML
51 lines
2.1 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 id="page" {% if page.image.feature %}class="feature"{% endif %} itemscope itemtype="http://schema.org/WebPage">
|
||
|
|
||
|
{% include browser-upgrade.html %}
|
||
|
{% include navigation.html %}
|
||
|
|
||
|
{% if page.image.feature %}
|
||
|
<div class="entry-header">
|
||
|
<div class="entry-image"><img src="{{ site.url }}/images/{{ page.image.feature }}" alt="{{ page.title }}" itemprop="image">
|
||
|
{% if page.image.credit %}<div class="image-credit">Image source: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></div><!-- /.image-credit -->{% endif %}
|
||
|
</div><!-- /.entry-image -->
|
||
|
</div><!-- /.entry-header -->
|
||
|
{% endif %}
|
||
|
|
||
|
<div id="main" role="main" itemprop="mainContentOfPage">
|
||
|
<article class="entry">
|
||
|
<header class="header-title">
|
||
|
<div class="header-title-wrap">
|
||
|
<h1 class="entry-title" itemprop="name">{{ page.title }}</h1>
|
||
|
</div><!-- /.header-title-wrap -->
|
||
|
</header>
|
||
|
<div class="entry-content" itemprop="description">
|
||
|
{{ content }}
|
||
|
<footer class="entry-meta">
|
||
|
{% if page.modified %}{{ page.title }} was last modified on <span class="entry-date date modified"><time datetime="{{ page.modified }}" itemprop="dateModified">{{ page.modified }}</time></span>
|
||
|
<span class="author vcard fn" itemprop="author" itemtype="http://schema.org/Person">{{ site.owner.name }}</span>{% endif %}
|
||
|
</footer>
|
||
|
</div><!-- /.entry-content -->
|
||
|
{% if site.disqus_shortname and page.comments %}<section id="disqus_thread"></section><!-- /#disqus_thread -->{% endif %}
|
||
|
</article>
|
||
|
</div><!-- /#main -->
|
||
|
|
||
|
<div class="footer-wrapper">
|
||
|
<footer role="contentinfo">
|
||
|
{% include footer.html %}
|
||
|
</footer>
|
||
|
</div><!-- /.footer-wrapper -->
|
||
|
|
||
|
{% include scripts.html %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|