コード例 #1
0
ファイル: hackergists.py プロジェクト: maplambda/hacker-gists
def more(start):
    gists = model.recent_gists(start)
    return render_template('index.html', params=gists, start=start)
コード例 #2
0
ファイル: hackergists.py プロジェクト: maplambda/hacker-gists
def latest():
    gists = model.recent_gists(0)
    return render_template('index.html', params=gists, start=0)