diff --git a/flaskfdx/static/favicon.ico b/flaskfdx/static/favicon.ico
new file mode 100644
index 0000000..81d6a47
Binary files /dev/null and b/flaskfdx/static/favicon.ico differ
diff --git a/flaskfdx/templates/base.html b/flaskfdx/templates/base.html
new file mode 100644
index 0000000..6541a0a
--- /dev/null
+++ b/flaskfdx/templates/base.html
@@ -0,0 +1,12 @@
+
+
+
+ {% block head %}
+ {% block title %}replaced? {% endblock %}
+ {% endblock %}
+
+
+
+ {% block content %}{% endblock %}
+
+
diff --git a/flaskfdx/templates/dashboard.html b/flaskfdx/templates/dashboard.html
new file mode 100644
index 0000000..2e1028b
--- /dev/null
+++ b/flaskfdx/templates/dashboard.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% block title %}Dashboard{% endblock %}
+{% block content %}
+ Dashboard
+
+ Contract
+
+
+ | Date |
+ Contract Stops |
+ Terminal Packages |
+ % of Terminal Volume |
+
+
+
+ {% for row in weekly %}
+
+ | {{ row['date'] }} |
+ {{ row['constp'] }} |
+ {{ row['termpkg'] }} |
+ {{ row['percent'] }} |
+
+ {% endfor %}
+
+
+{% endblock %}
diff --git a/flaskfdx/templates/exercise.html b/flaskfdx/templates/exercise.html
new file mode 100644
index 0000000..27ea43b
--- /dev/null
+++ b/flaskfdx/templates/exercise.html
@@ -0,0 +1,46 @@
+
+
+
+ | Exercise |
+ Sets/Reps |
+ Rest |
+ HowTo |
+
+
+ | Push-ups |
+ 2x12 |
+ 60s |
+ insert URL here |
+
+
+ | Rows |
+ 2x12 |
+ 60s |
+ insert URL here |
+
+
+ | Glute Bridge |
+ 2x11 |
+ 60s |
+ insert URL here |
+
+
+ | Squat |
+ 2x9 |
+ 60s |
+ insert URL here |
+
+
+ | Deadbugs |
+ 3x15s |
+ 60s |
+ insert URL here |
+
+
+ | Birddogs |
+ 3x10s |
+ 60s |
+ insert URL here |
+
+
+
diff --git a/flaskfdx/templates/index.html b/flaskfdx/templates/index.html
new file mode 100644
index 0000000..ac96ac1
--- /dev/null
+++ b/flaskfdx/templates/index.html
@@ -0,0 +1,4 @@
+
+Exercise Dude
+JBL Data
+
diff --git a/flaskfdx/templates/jbl.html b/flaskfdx/templates/jbl.html
new file mode 100644
index 0000000..4ae440a
--- /dev/null
+++ b/flaskfdx/templates/jbl.html
@@ -0,0 +1,22 @@
+
+
+ Contract
+
+
+ | Date |
+ Contract Stops |
+ Terminal Packages |
+ % of Terminal Volume |
+
+
+
+ {% for row in sqldata %}
+
+ | {{ row[0] }} |
+ {{ row[1] }} |
+ {{ row[2] }} |
+ {{ row[3] }} |
+
+ {% endfor %}
+
+