joyce/blueprints/joyce.py

9 lines
269 B
Python

from flask import Blueprint, render_template, abort, redirect
from jinja2 import TemplateNotFound
joyce = Blueprint('joyce', __name__)
@joyce.route('/', defaults={'path': ''})
@joyce.route('/<path:path>')
def show_joyce(path):
return render_template('joyce.html')