X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fdash%2Fapp%2Fpal%2Froutes.py;h=d4cd88ffce92c81101b19af024d6ab469e997f19;hb=371bac71bc789bf9d68fa1b8ba77f21c4876244f;hp=200d7afebad81afb07ea10a85fba2aa4e17f7a36;hpb=b2cb835b34c7404b2aaee3ec30700c67537da66d;p=csit.git diff --git a/resources/tools/dash/app/pal/routes.py b/resources/tools/dash/app/pal/routes.py index 200d7afeba..d4cd88ffce 100644 --- a/resources/tools/dash/app/pal/routes.py +++ b/resources/tools/dash/app/pal/routes.py @@ -18,14 +18,13 @@ from flask import current_app as app from flask import render_template -@app.route(u"/") +@app.route("/") def home(): """Landing page. """ - return render_template( - u"index.jinja2", - title=u"FD.io CSIT", - description=u"Performance Dashboard", - template=u"home-template" + "index_layout.jinja2", + title="FD.io CSIT", + description="Performance Dashboard", + template="d-flex h-100 text-center text-white bg-dark" )