def storycontent(story, page): return dumps(get_content(story, page))
def storylipsum(page): return dumps(get_content(1337, page))
def storypage(story, page): return render_template('storypage.html', content = get_content(story, page) )