mirror of
https://github.com/aronwk-aaron/MSState-Library-ETD.git
synced 2026-02-08 14:59:05 -06:00
22 lines
457 B
Python
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')
|