from flask import Blueprint, render_template
root_page = Blueprint('root', __name__)
@root_page.route('/')
def index():
return render_template('root/index.html')
@root_page.route('/about')
def about():
return render_template('root/about.html')
@root_page.route('/services')
def services():
return render_template('root/services.html')
@root_page.route('/partners')
def partners():
return render_template('root/partners.html')
@root_page.route('/contact')
def contact():
return render_template('root/contact.html')
@root_page.route('/abuse')
def abuse():
return render_template('root/abuse.html')
@root_page.route('/disclaimer')
def disclaimer():
return render_template('root/disclaimer.html')