def get(self): posts = Post.all().order('-created') #GQL for the above would be # db.GqlQuery(SELECT * FROM Post ORDER BY created DESC LIMIT 10) self.render('blog.html', posts = posts)