2
0

home.html 550 B

1234567891011121314151617181920
  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. <div id="prev-next">
  11. {% if post.prev %}
  12. <a href="{{post.prev.uri}}">&laquo; {{post.prev.title}}</a>
  13. {% endif %}
  14. {% if post.next %}
  15. <a class="right" href="{{post.next.uri}}">{{post.next.title}} &raquo;</a>
  16. {% endif %}
  17. </div>
  18. </div>
  19. {% endblock %}