From 61fba866009c028c5fa11d0b6ac9a46a00d33aaa Mon Sep 17 00:00:00 2001 From: justuser31 Date: Mon, 29 Apr 2024 19:10:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D1=81=D0=B5=D1=85=20=D0=BE?= =?UTF-8?q?=D1=88=D0=B8=D0=B1=D0=BE=D0=BA,=20=D0=B7=D0=B0=D0=BF=D1=83?= =?UTF-8?q?=D1=81=D0=BA:=20flask=20--app=20main=20run?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reworked/frontend/main.py | 4 +- reworked/frontend/templates/index.html | 67 ++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 reworked/frontend/templates/index.html diff --git a/reworked/frontend/main.py b/reworked/frontend/main.py index aebfc0a..e77c5bd 100644 --- a/reworked/frontend/main.py +++ b/reworked/frontend/main.py @@ -3,7 +3,7 @@ app = Flask(__name__) @app.route("/") def ss14tools(): - render_template("./index.html") + return render_template("index.html") if __name__ == "__main__": - app.run() \ No newline at end of file + app.run() diff --git a/reworked/frontend/templates/index.html b/reworked/frontend/templates/index.html new file mode 100644 index 0000000..8097914 --- /dev/null +++ b/reworked/frontend/templates/index.html @@ -0,0 +1,67 @@ + + + + + + SS14Tools + + + + + + +
+
+
+
+ +
+
+ +
+
+
+
+ + + \ No newline at end of file