vanth/vanth/pages/index.py
Eli Ribble e1f39bb852 Use automatic template context rather than passing the path through
Saves me having to push a bunch of common stuff through, which just
makes sense
2016-06-09 10:18:30 -06:00

7 lines
161 B
Python

import flask
blueprint = flask.Blueprint('index', __name__)
@blueprint.route('/', methods=['GET'])
def index():
return flask.render_template('index.html')