14 lines
295 B
Python
14 lines
295 B
Python
|
from flask import Flask, render_template, redirect, url_for
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
|
||
|
|
||
|
@app.route("/" or "/index.html")
|
||
|
def root():
|
||
|
return render_template("template.html",page = "Page")
|
||
|
|
||
|
@app.route("/imprint.html")
|
||
|
def imprint():
|
||
|
return render_template("template.html",page = "Imprint")
|