diff --git a/website/templates/index.html b/website/templates/index.html
index a714064..e9b4ffb 100644
--- a/website/templates/index.html
+++ b/website/templates/index.html
@@ -1,4 +1,36 @@
-
-  
-    
+
+  
Clockwork Gaming PLUS!
+
+
+
+
Test
+{% endblock %}
diff --git a/website/templates/layout.html b/website/templates/layout.html
new file mode 100644
index 0000000..373e9a1
--- /dev/null
+++ b/website/templates/layout.html
@@ -0,0 +1,58 @@
+
+
+
+
+  
Clockwork Gaming PLUS!
+  
+  
+  
+
+  
+  
+  
+  
+  {% block head %}{% endblock %}
+
+
+
+
+  
+
+  
  
+  {% with messages = get_flashed_messages(with_categories=true) %}
+  {% if messages %}
+    {% for category, message in messages %}
+    {% set splitmessage = message.split(" ", 1) %}
+    
+      
 
+      
{{ splitmessage[0] }} {{ splitmessage[1] }}
+    
+    {% endfor %}
+  {% endif %}
+  {% endwith %}
+  
+  {% block body %}{% endblock %}
+
+  
+  
+