mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-11 11:04:28 +00:00
10 lines
300 B
Python
10 lines
300 B
Python
# ------- 3rd party imports -------
|
|
from flask import Blueprint, render_template
|
|
|
|
page_not_found_blueprint = Blueprint('page_not_found_blueprint', __name__, template_folder='templates')
|
|
|
|
|
|
@page_not_found_blueprint.route('/page_not_found')
|
|
def page_not_found():
|
|
return render_template('404.html')
|