10 lines
224 B
Python
10 lines
224 B
Python
from . import blueprint
|
|
from flask import render_template
|
|
|
|
'''
|
|
Function responsible for displaying the main landing page of the site
|
|
'''
|
|
@blueprint.route('/')
|
|
def welcome_page():
|
|
return render_template('index.html')
|