From 766549c649301ab3554efb430c35037c4a5b35aa Mon Sep 17 00:00:00 2001 From: justuser31 Date: Mon, 29 Apr 2024 19:35:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BD=D0=BE=D1=81=20?= =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reworked/site.py | 9 +++++ reworked/templates/index.html | 67 +++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 reworked/site.py create mode 100644 reworked/templates/index.html diff --git a/reworked/site.py b/reworked/site.py new file mode 100644 index 0000000..8640dde --- /dev/null +++ b/reworked/site.py @@ -0,0 +1,9 @@ +from flask import Flask, render_template +app = Flask(__name__) + +@app.route("/") +def main(): + return render_template("index.html") + +if __name__ == '__main__': + app.run(debug=False, port = 5001) diff --git a/reworked/templates/index.html b/reworked/templates/index.html new file mode 100644 index 0000000..8097914 --- /dev/null +++ b/reworked/templates/index.html @@ -0,0 +1,67 @@ + + + + + + SS14Tools + + + + + + +
+
+
+
+ +
+
+ +
+
+
+
+ + + \ No newline at end of file