home.html 374 B

12345678910111213141516
  1. {% extends "/html/base.html" %}
  2. {% block content %}
  3. <div id="post">
  4. {% include "/html/post-content.html" %}
  5. {% if disqus? %}
  6. <div id="comments">
  7. <a href="{{post.uri}}#disqus_thread">View Comments</a>
  8. </div>
  9. {% endif %}
  10. {% with prev=post.prev next=post.next%}
  11. {% include "/html/prev-next.html" %}
  12. {% endwith %}
  13. </div>
  14. {% endblock %}