|
|
@@ -8,7 +8,7 @@ |
|
|
|
|
|
|
|
<h1><a class="no-tufte-underline" href="{{ resource.url }}">{{ resource.meta.title }}</a></h1> |
|
|
|
|
|
|
|
<p>Posted: {{ resource.meta.created.strftime('%B %e, %Y') }} at {{ resource.meta.time }}</p> |
|
|
|
<p class="posted">Posted: {{ resource.meta.created.strftime('%B %e, %Y') }} at {{ resource.meta.time }}</p> |
|
|
|
|
|
|
|
{% if resource.meta.tags %} |
|
|
|
<ul class="tags clear"> |
|
|
@@ -29,5 +29,22 @@ |
|
|
|
</section> |
|
|
|
</article> |
|
|
|
{%- endmark %} |
|
|
|
<section> |
|
|
|
<p class='prevnext'> |
|
|
|
<a class="small prev{{' disabled' if not resource.prev_by_time }}" |
|
|
|
title="{{ resource.prev_by_time.meta.title }}" |
|
|
|
{% if resource.prev_by_time %} |
|
|
|
href="{{ content_url(resource.prev_by_time.url) }}"{% endif %}> |
|
|
|
Next |
|
|
|
</a> |
|
|
|
| |
|
|
|
<a class="small next{{' disabled' if not resource.next_by_time }}" |
|
|
|
title="{{ resource.next_by_time.meta.title }}" |
|
|
|
{% if resource.next_by_time %} |
|
|
|
href="{{ content_url(resource.next_by_time.url) }}"{% endif %}> |
|
|
|
Previous |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
|
|
|
|
{%- endblock %} |