20 lines
550 B
HTML
20 lines
550 B
HTML
{% extends "/html/base.html" %}
|
|
{% block content %}
|
|
<div id="post">
|
|
{% include "/html/post-content.html" %}
|
|
{% if disqus? %}
|
|
<div id="comments">
|
|
<a href="{{post.uri}}#disqus_thread">View Comments</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div id="prev-next">
|
|
{% if post.prev %}
|
|
<a href="{{post.prev.uri}}">« {{post.prev.title}}</a>
|
|
{% endif %}
|
|
{% if post.next %}
|
|
<a class="right" href="{{post.next.uri}}">{{post.next.title}} »</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|