jpscontracting/run_site.py
2017-01-17 00:42:30 -05:00

13 lines
250 B
Python

from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def index():
return render_template('index.html', title="Index - JPs")
@app.route('/test')
def test():
return render_template('test.html')