Render hello-world using a html template

pull/2/head
mandlm 2018-10-28 22:23:45 +01:00
parent aefedbc4a0
commit 73e9320e99
2 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,12 @@
#!/usr/bin/python3
from flask import Flask
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello slider"
return render_template("hello.html")
if __name__ == "__main__":
app.run()

1
templates/hello.html Normal file
View File

@ -0,0 +1 @@
Hello Slider!