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