You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
482 B

from flask import current_app, Blueprint, render_template, url_for, redirect
default_views = Blueprint('default_views', __name__, url_prefix='/')
@default_views.route('/')
def index():
return redirect(url_for('npc_views.generate_npc_party'))
# return render_template('index.html')
@default_views.route('/handbook')
def handbook():
return render_template('handbook.html')
@default_views.route('/worldmap')
def worldmap():
return render_template('worldmap.html')