Exemple #1
0
def post(name):
    path = '{}'.format(name)
    post = pages.get_or_404(path)
    return render_template('post.html', post=post)
Exemple #2
0
def post(name=None):
    path = '{}/{}'.format(POST_DIR, name)
    post = pages.get_or_404(path)
    return render_template('post.html', post=post)
Exemple #3
0
def entry(path):
    entry = pages.get_or_404(path)
    return render_template('read.html', entry=entry)