UTI: Add comments and clean the code.
[csit.git] / resources / tools / dash / app / pal / routes.py
index 16680c4..d4cd88f 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""Routes for parent Flask app."""
+"""Routes for parent Flask app.
+"""
+
 from flask import current_app as app
 from flask import render_template
 
 
 @app.route("/")
 def home():
-    """Landing page."""
+    """Landing page.
+    """
     return render_template(
-        "index.jinja2",
+        "index_layout.jinja2",
         title="FD.io CSIT",
         description="Performance Dashboard",
-        template="home-template"
+        template="d-flex h-100 text-center text-white bg-dark"
     )