diff --git a/webcompat/templates/dashboard/footer.html b/webcompat/templates/dashboard/footer.html
new file mode 100644
index 000000000..4e0eb5a8f
--- /dev/null
+++ b/webcompat/templates/dashboard/footer.html
@@ -0,0 +1,3 @@
+
diff --git a/webcompat/templates/dashboard/layout.html b/webcompat/templates/dashboard/layout.html
new file mode 100644
index 000000000..71dc496a8
--- /dev/null
+++ b/webcompat/templates/dashboard/layout.html
@@ -0,0 +1,15 @@
+
+
+
+ {% block title %}Web Compatibility{% endblock %} | webcompat.com
+
+
+
+
+
+
+ {% block body %}{% endblock %}
+ {% include "dashboard/footer.html" %}
+
+
diff --git a/webcompat/templates/dashboard/triage.html b/webcompat/templates/dashboard/triage.html
new file mode 100644
index 000000000..94599a807
--- /dev/null
+++ b/webcompat/templates/dashboard/triage.html
@@ -0,0 +1,12 @@
+{% extends "dashboard/layout.html" %}
+{% block title %}Triage Dashboard{% endblock %}
+{% block body %}
+
+
+
+ @@PLACEHOLDER FOR THE FUTURE DASHBOARD@@
+
+
+{% endblock %}
diff --git a/webcompat/views.py b/webcompat/views.py
index 9e399a8d1..f9e7bbccd 100644
--- a/webcompat/views.py
+++ b/webcompat/views.py
@@ -344,7 +344,7 @@ def cssfixme():
@app.route('/dashboard/triage')
def dashboard_triage():
"""Route to handle dashboard triage."""
- return render_template('dashboard-triage.html')
+ return render_template('dashboard/triage.html')
@app.route('/csp-report', methods=['POST'])