Files
MSState-Library-ETD/app/main.py
2019-02-04 15:47:10 -06:00

22 lines
457 B
Python

from flask import render_template, Blueprint
main_blueprint = Blueprint('main', __name__)
@main_blueprint.route('/')
def splash():
"""Splash Page"""
return render_template('main/splash.jinja2')
@main_blueprint.route('/home')
def index():
"""Home/Index Page"""
return render_template('main/index.jinja2')
@main_blueprint.route('/dashboard')
def dashboard():
"""Dashboard Page"""
return render_template('main/dashboard.jinja2')