13 lines
253 B
Python
13 lines
253 B
Python
from flask import Blueprint
|
|
from flask import render_template
|
|
|
|
page_bp = Blueprint('page', __name__)
|
|
|
|
@page_bp.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
@page_bp.route('/show')
|
|
def test():
|
|
return render_template('show.html')
|