Ejemplo n.º 1
0
def storycontent(story, page):
	return dumps(get_content(story, page))
Ejemplo n.º 2
0
def storylipsum(page):
	return dumps(get_content(1337, page))
Ejemplo n.º 3
0
def storypage(story, page):
	return render_template('storypage.html',
					content = get_content(story, page)
					)