diff --git a/main.py b/main.py index a7002ce..49b1ef0 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,7 @@ app = Flask(__name__) @app.route("/") def homepage(): - return render_template("home.html") + return render_template("home.html", services=services) @app.route("/status") diff --git a/templates/home.html b/templates/home.html index 1ec71c8..ca7a1af 100644 --- a/templates/home.html +++ b/templates/home.html @@ -2,7 +2,7 @@ - + Debug Divs @@ -11,37 +11,20 @@ crossorigin="anonymous"> - -
+ + {% for s in services %} +
-

Gitea

-
-
- -
-
-
-
-
-
-

Gitea

-
-
- -
-
-
-
-
-
-

Gitea

+

{{s.url}}

+ {% endfor %}