feat(astf): Support framesizes for ASTF
[csit.git] / resources / tools / dash / app / pal / routes.py
index 16680c4..63bbb30 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("/")
+@app.route(u"/")
 def home():
-    """Landing page."""
+    """Landing page.
+    """
     return render_template(
-        "index.jinja2",
-        title="FD.io CSIT",
-        description="Performance Dashboard",
-        template="home-template"
+        u"index_layout.jinja2",
+        title=u"FD.io CSIT",
+        description=u"Performance Dashboard",
+        template=u"d-flex h-100 text-center text-white bg-dark"
     )