UTI: Move constatns to a separate file
[csit.git] / resources / tools / dash / app / pal / routes.py
index d4cd88f..59af748 100644 (file)
 from flask import current_app as app
 from flask import render_template
 
+from .utils.constants import Constants as C
 
-@app.route("/")
+
+@app.route(C.APPLICATIN_ROOT)
 def home():
     """Landing page.
     """
     return render_template(
-        "index_layout.jinja2",
-        title="FD.io CSIT",
-        description="Performance Dashboard",
-        template="d-flex h-100 text-center text-white bg-dark"
+        C.MAIN_HTML_LAYOUT_FILE,
+        title=C.TITLE,
+        description=C.DESCRIPTION,
+        template=C.TEMPLATE
     )