14 lines
213 B
Python
14 lines
213 B
Python
|
from flask import Flask, render_template
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
|
||
|
@app.route("/")
|
||
|
def index():
|
||
|
return render_template("index.html")
|
||
|
|
||
|
|
||
|
@app.route("/about")
|
||
|
def about():
|
||
|
return render_template("about.html")
|