index.html 320 B

12345678910111213141516
  1. <p>
  2. You have the following blog posts available:
  3. </p>
  4. <ul>
  5. {% for post in post_list %}
  6. <li>
  7. <a href="/post/{{ post.id }}">{{ post.title|title }}</a>
  8. </li>
  9. {% empty %}
  10. <li>
  11. No posts available yet. Try to <a href="/admin">log in</a> and post
  12. something!
  13. </li>
  14. {% endfor %}
  15. </ul>