15 lines
255 B
Python
15 lines
255 B
Python
|
from flask import render_template
|
||
|
|
||
|
from app import app
|
||
|
|
||
|
|
||
|
@app.route("/")
|
||
|
@app.route("/index")
|
||
|
def index():
|
||
|
return render_template("index.html", title="Home Page")
|
||
|
|
||
|
|
||
|
@app.route("/data")
|
||
|
def data():
|
||
|
return render_template("data.html", title="Data")
|