2014-01-07 23:36:14 +00:00
|
|
|
{% include header.html %}
|
2015-07-25 21:44:04 +00:00
|
|
|
<div id="mainContent">
|
2014-01-07 23:36:14 +00:00
|
|
|
{% if page.feature %}
|
2015-07-25 21:44:04 +00:00
|
|
|
<div class="imageHeader">
|
|
|
|
<img src="{{ page.feature.url }}">
|
|
|
|
{% if page.feature.credit %}
|
|
|
|
<div class="imageCredit">
|
|
|
|
Image Source: <a href="{{ page.feature.creditLink }}">{{ page.feature.credit }}</a>
|
2014-01-07 23:36:14 +00:00
|
|
|
</div>
|
2015-07-25 21:44:04 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<h5>
|
|
|
|
{% if page.modified %}
|
|
|
|
<em>Last Updated:</em>
|
|
|
|
<time datetime="{{ page.modified | date_to_xmlschema }}">{{ page.modified | date_to_string }}</time>
|
|
|
|
{% endif %}
|
|
|
|
<a class="iconLink" title="Perma-link" href="{{ site.url }}{{ page.url }}"><i class="large icon-bookmark"></i></a>
|
|
|
|
</h5>
|
|
|
|
</header>
|
|
|
|
<div class="content">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
{% if page.links %}
|
|
|
|
<footer>
|
|
|
|
{% for link in page.links %}
|
|
|
|
<!-- TODO -->
|
|
|
|
{% endfor %}
|
|
|
|
</footer>
|
|
|
|
{% endif %}
|
|
|
|
</article>
|
2014-01-07 23:36:14 +00:00
|
|
|
</div>
|
|
|
|
{% include footer.html %}
|