11 lines
242 B
Python
Executable file
11 lines
242 B
Python
Executable file
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def render_home():
|
|
return render_template("home.html", big_header = True)
|
|
|
|
@app.route("/contact")
|
|
def render_contact():
|
|
return render_template("contact.html")
|