def get(self):
     self.response.headers['Content-Type'] = "application/json; charset=UTF-8"
     posts = Post.all().order('-created')
     jsonList = []
     for post in posts:
         jsonList.append({"content": post.content, "subject": post.subject})
     self.response.out.write(json.dumps(jsonList))