Example #1
0
def post(name):
    path = '{}'.format(name)
    post = pages.get_or_404(path)
    return render_template('post.html', post=post)
Example #2
0
def post(name=None):
    path = '{}/{}'.format(POST_DIR, name)
    post = pages.get_or_404(path)
    return render_template('post.html', post=post)
Example #3
0
File: views.py Project: dbolt/blog
def entry(path):
    entry = pages.get_or_404(path)
    return render_template('read.html', entry=entry)