Diff between 3224522efdd53c5e33288eee7549ca29d6ccf427 and 6ddb8696baea848fd45bde418d9d1aa9aca6bc60

Changed Files

File Additions Deletions Status
app.py +10 -0 modified
templates/index.html +1 -0 added

Full Patch

diff --git a/app.py b/app.py
index e69de29..bc988c9 100644
--- a/app.py
+++ b/app.py
@@ -0,0 +1,10 @@
+from flask import Flask, render_template
+
+app = Flask(__name__)
+
+@app.route("/")
+def hello_world():
+    return render_template("index.html")
+
+if __name__ == "__main__":
+    app.run(debug=True)
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..f8f4583
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1 @@
+<img src="https://cataas.com/cat/1DrcyohjhwcNaRIz?position=center"></img>
\ No newline at end of file