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')