Exemplo n.º 1
0
def more(start):
    gists = model.recent_gists(start)
    return render_template('index.html', params=gists, start=start)
Exemplo n.º 2
0
def latest():
    gists = model.recent_gists(0)
    return render_template('index.html', params=gists, start=0)