kappa123/kappa123/server/main/views.py

31 lines
466 B
Python
Raw Normal View History

# project/server/main/views.py
2015-01-21 08:32:17 -08:00
#################
#### imports ####
#################
from flask import render_template, Blueprint
################
#### config ####
################
main_blueprint = Blueprint('main', __name__,)
################
#### routes ####
################
@main_blueprint.route('/')
def home():
return render_template('main/home.html')
@main_blueprint.route("/about/")
def about():
return render_template("main/about.html")