previews.html 802 B

1234567891011121314151617181920212223242526272829
  1. {% extends "/html/base.html" %}
  2. {% block content %}
  3. <div id="post">
  4. {% for post in posts %}
  5. <div class="post-header">
  6. <h1>{{post.title}}</h1>
  7. <div id="post-meta">
  8. {% if post.author %}
  9. <div class="author">{{post.author}}</div>
  10. {% endif %}
  11. <strong>{{post.date|date:longDate}}</strong>
  12. </div>
  13. </div>
  14. {{post.content|safe}}
  15. <br/>
  16. <a class="button" href="{{post.uri}}">Continue reading &#8594;</a>
  17. <hr>
  18. {% endfor %}
  19. <div id="prev-next">
  20. {% if prev-uri %}
  21. <a class="button left" href="{{prev-uri}}">&laquo; Prev</a>
  22. {% endif %}
  23. {% if next-uri %}
  24. <a class="button right" href="{{next-uri}}">Next &raquo;</a>
  25. {% endif %}
  26. </div>
  27. </div>
  28. {% endblock %}