Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. </html>
  4. <head>
  5. <title>blog</title>
  6. </head>
  7.  
  8. <body>
  9. <h1>Blog</h1>
  10. {% if [blogs|count] > 1 %}
  11. {% for blog in blogs %}
  12. <div class="blog">
  13. <a class="blog-subject" href=http://localhost:8836/blog/{{blog.key().id()}}>
  14. >{{blog.subject}}{{blog.created}}
  15. </a>
  16. <pre class="blog-content">{{blog.content}}</pre>
  17. </div>
  18. {% endfor %}
  19. {% elif blogs.count() == 1 %}
  20. <div class="blog">
  21. <a class="blog-subject" href=http://localhost:8836/blog/{{blog.key().id()}}>
  22. >{{blog.subject}}{{blog.created}}
  23. </a>
  24. <pre class="blog-content">{{blog.content}}</pre>
  25. </div>
  26. {% endif %}
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement